en:
faker:
barcode:
ean_8: '#######'
ean_13: '############'
upc_a: '###########'
upc_e:
- '0######'
- '1######'
composite_symbol:
- '########'
- '????????'
- '####????'
- '????####'
- '##??##??'
- '??##??##'
isbn:
- '978#########'
- '9798########'
- '97910#######'
- '97911#######'
- '97912#######'
ismn: '9790########'
issn: '977#########'
Faker().barcode
Dictionary file
Available Functions
// `#` represents a random digit
// `?` represents a random letter
Faker.barcode.ean8() // => #######
Faker.barcode.ean13() // => ############
Faker.barcode.upcA() // => ###########
Faker.barcode.upcE() // => 0######
Faker.barcode.compositeSymbol() // => ????####
Faker.barcode.isbn() // => 978#########
Faker.barcode.ismn() // => 9790########
Faker.barcode.issn() // => 977#########