Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //...
- // check if the favoriteid is
- UserSchema.methods.isFavorite = function(id){
- return this.favorites.some(function(favoriteId){
- return favoriteId.toString() === id.toString();
- });
- };
- //...
Advertisement
Add Comment
Please, Sign In to add comment