Guest User

Untitled

a guest
Oct 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. exports.each = function(fn) {
  2. var i = 0, len = this.length;
  3. while (i < len && fn.call(this[i], i,
  4. this[i]) !== false) ++i;
  5. return this;
  6. };
Add Comment
Please, Sign In to add comment