Skip to content

Instantly share code, notes, and snippets.

@HonzaMac
Created December 20, 2021 22:59
Show Gist options
  • Save HonzaMac/4efecfa7c6418fa3485280e2387369e7 to your computer and use it in GitHub Desktop.
Save HonzaMac/4efecfa7c6418fa3485280e2387369e7 to your computer and use it in GitHub Desktop.
Faker object product.js
const product = {
product: faker.commerce.product(),
productName: faker.commerce.productName(),
};
console.log(product)
/**
{
product: 'Pants',
productName: 'Tasty Rubber Shoes'
}
**/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment