Skip to content

Instantly share code, notes, and snippets.

@HonzaMac
Last active December 20, 2021 22:58
Show Gist options
  • Save HonzaMac/bab86aa01d0506e9029a3166925add84 to your computer and use it in GitHub Desktop.
Save HonzaMac/bab86aa01d0506e9029a3166925add84 to your computer and use it in GitHub Desktop.
faker-object-user example
import faker from 'faker';
const user = {
username: faker.name.findName(),
email: faker.internet.email(),
country: faker.address.country(),
department: faker.company.companyName(),
divisionName: faker.name.jobArea(),
};
console.log(user)
/**
{
username: 'Kim Altenwerth',
email: '[email protected]',
country: 'Zimbabwe',
department: 'McDermott, Swift and Hahn',
divisionName: 'Group'
}
**/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment