Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. module.exports = {
  2.  
  3. getuserFavouriteArray:function (callback) {
  4. return callback('ok from service');
  5. }
  6. }
  7.  
  8. FavouriteService.getuserFavouriteArray(function (response) {
  9. console.log(response);
  10. });
  11.  
  12. ok from service
  13. ok from service
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement