Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function function1() {
  2. return 'hello world';
  3. }
  4.  
  5. function function2(){
  6. return 'Second function';
  7. }
  8.  
  9. function function3(){
  10. return 'Third function';
  11. }
  12.  
  13. function isSubset(source, target) {
  14. return !_.difference(_.flatten(source), _.flatten(target)).length;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement