Skip to content

Instantly share code, notes, and snippets.

@priyankvex2
Last active June 24, 2019 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save priyankvex2/1e46089329965c675c60da76b968783f to your computer and use it in GitHub Desktop.
Save priyankvex2/1e46089329965c675c60da76b968783f to your computer and use it in GitHub Desktop.
Pokemon DB
let db_driver = require('db_driver');
function findById(pokemonId){
return db_driver.Pokemon.find({id: pokemonId});
}
module.exports ={
findById: findById
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment