Skip to contents

Create fake credit card data

Usage

ch_credit_card_provider(n = 1)

ch_credit_card_number(n = 1)

ch_credit_card_security_code(n = 1)

Arguments

n

(integer) number of things to get, any non-negative integer

Examples

ch_credit_card_provider()
#> [1] "JCB 15 digit"
ch_credit_card_provider(n = 4)
#> [1] "Discover"     "Voyager"      "JCB 16 digit" "JCB 16 digit"

ch_credit_card_number()
#> [1] "3465436328121726"
ch_credit_card_number(n = 10)
#>  [1] "4871178461244"       "561287454129591"     "6011049377137298860"
#>  [4] "3044690172724357"    "3744271085789241"    "3337818536591718973"
#>  [7] "4074575253972345"    "4884790154501"       "3337612257965893700"
#> [10] "3007211891723989"   
# or even ch_credit_card_number(n = 500)

ch_credit_card_security_code()
#> [1] "080"
ch_credit_card_security_code(n = 10)
#>  [1] "157" "505" "551" "758" "797" "602" "058" "261" "270" "866"
# or even ch_credit_card_security_code(n = 500)