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 16 digit"
ch_credit_card_provider(n = 4)
#> [1] "Diners Club / Carte Blanche" "JCB 15 digit"               
#> [3] "VISA 16 digit"               "Diners Club / Carte Blanche"

ch_credit_card_number()
#> [1] "4765560404666933"
ch_credit_card_number(n = 10)
#>  [1] "869919584597448564"  "3528338975025320280" "869962547399622120" 
#>  [4] "630487724803520"     "3337280320402654753" "4611804189192483"   
#>  [7] "6011601709922085278" "589381859483869"     "3088215143486451213"
#> [10] "3021743085622524"   
# or even ch_credit_card_number(n = 500)

ch_credit_card_security_code()
#> [1] "960"
ch_credit_card_security_code(n = 10)
#>  [1] "403" "415" "671" "888" "448" "022" "952" "198" "541" "321"
# or even ch_credit_card_security_code(n = 500)