Guest User

Untitled

a guest
Jul 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. { "_id" : ObjectId( "4e00e83608146e71e6edba81" ),
  2. ....
  3. "text" : "Text now exists in the database"}
  4.  
  5. { "_id" : ObjectId( "4e00e83608146e71e6edba81" ),
  6. ....
  7. "text" : "Text now exists in the database",
  8. "tHash" : -4375633875013353634 }
  9.  
  10. var hashCode = function(s) {
  11. if (s == null) return 0;
  12. if (s.length == 0) return 1;
  13. var hash = 0;
  14. for (var i = 0; i < s.length; i++) {
  15. hash = ((hash << 5) - hash) + s.charCodeAt(i);
  16. hash = hash & hash; // Convert to 32bit integer
  17. }
  18. return hash;
  19. };
Add Comment
Please, Sign In to add comment