Skip to content

Instantly share code, notes, and snippets.

@pushkar100
Created June 24, 2022 21:43
Show Gist options
  • Save pushkar100/b839a625a2dd47ffa8146ee9bd46aab6 to your computer and use it in GitHub Desktop.
Save pushkar100/b839a625a2dd47ffa8146ee9bd46aab6 to your computer and use it in GitHub Desktop.
/* /src/helpers/index.js */
// ...
const fetchFakeAPIData = (request) => new Promise((resolve, reject) => {
if (request.animal) {
resolve({
animal: 'Dog',
name: 'Charlie'
});
}
reject({
error: 'Did not find species'
})
});
export { isEarlierThanNow, fetchFakeAPIData };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment