Guest User

Untitled

a guest
Nov 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. (function() {
  2. var oldValueOf = Array.prototype.valueOf;
  3. Array.prototype.valueOf = function() {
  4. if (oldValueOf.call(this) === -1) {
  5. console.log('bar'); return -1;
  6. } else {
  7. return oldValueOf.call(this);
  8. }
  9. }
  10. })()
Add Comment
Please, Sign In to add comment