jsctags
Version:
jsctags generator
21 lines (18 loc) • 534 B
JavaScript
// Underscore's each function (roughly)
var each = function(obj, iterator, context) {
if (obj == null) return;
if (Array.prototype.forEach && obj.forEach === Array.prototype.forEach) {
obj.forEach(iterator, context);
} else if (obj.length === +obj.length) {
for (var i = 0, l = obj.length; i < l; i++)
iterator.call(context, obj[i], i, obj);
}
};
each([1, 2, 3, 4], function(n) {
n; //: number
this; //: Date
}, new Date);
each([{x: 10}], function(o) {
o; //: {x}
this; //: String
}, new String("x"));