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] "American Express"
ch_credit_card_provider(n = 4)
#> [1] "American Express" "VISA 16 digit"    "Mastercard"       "VISA 16 digit"   

ch_credit_card_number()
#> [1] "3528599867267655602"
ch_credit_card_number(n = 10)
#>  [1] "4404666939419586"    "3459744856865335"    "3528975025320289661"
#>  [4] "4547399622120588"    "3528772480352842801" "4040265475364"      
#>  [7] "52804189192485604"   "3096709922085270485" "53859483868821513"  
#> [10] "3434864512161745"   
# or even ch_credit_card_number(n = 500)

ch_credit_card_security_code()
#> [1] "085"
ch_credit_card_security_code(n = 10)
#>  [1] "225" "396" "403" "415" "671" "888" "448" "022" "952" "198"
# or even ch_credit_card_security_code(n = 500)