Skip to content

Instantly share code, notes, and snippets.

@stoneboyindc
Created January 27, 2021 17:01
Show Gist options
  • Save stoneboyindc/8e77693fa45074eb9742e55d261f529b to your computer and use it in GitHub Desktop.
Save stoneboyindc/8e77693fa45074eb9742e55d261f529b to your computer and use it in GitHub Desktop.
const faker = require('faker');
function plantGenerator() {
let randomName = faker.name.findName();
let randomColor = faker.color();
return {
name: randomName,
color: randomColor
};
}
module.export = plantGenerator;
@Andre88-ar
Copy link

It even mentioned that in the instructions of the assignment, good catch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment