mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 20:30:04 +02:00
add some babel stuff
This commit is contained in:
22
node_modules/foreach/index.js
generated
vendored
Normal file
22
node_modules/foreach/index.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
var hasOwn = Object.prototype.hasOwnProperty;
|
||||
var toString = Object.prototype.toString;
|
||||
|
||||
module.exports = function forEach (obj, fn, ctx) {
|
||||
if (toString.call(fn) !== '[object Function]') {
|
||||
throw new TypeError('iterator must be a function');
|
||||
}
|
||||
var l = obj.length;
|
||||
if (l === +l) {
|
||||
for (var i = 0; i < l; i++) {
|
||||
fn.call(ctx, obj[i], i, obj);
|
||||
}
|
||||
} else {
|
||||
for (var k in obj) {
|
||||
if (hasOwn.call(obj, k)) {
|
||||
fn.call(ctx, obj[k], k, obj);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user