Show More
Commit Description:
add model solution
Commit Description:
add model solution
References:
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/iterable/for-each.js
| 11 lines
| 369 B
| application/javascript
| JavascriptLexer
|
r789 | "use strict"; | |||
var forOf = require("es6-iterator/for-of") | ||||
, isIterable = require("es6-iterator/is-iterable") | ||||
, iterable = require("./validate") | ||||
, forEach = Array.prototype.forEach; | ||||
module.exports = function (target, cb/*, thisArg*/) { | ||||
if (isIterable(iterable(target))) forOf(target, cb, arguments[2]); | ||||
else forEach.call(target, cb, arguments[2]); | ||||
}; | ||||