2022-01-21 08:28:41 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var forOf = require("es6-iterator/for-of")
|
|
|
|
, isIterable = require("es6-iterator/is-iterable")
|
|
|
|
, iterable = require("./validate")
|
|
|
|
, forEach = Array.prototype.forEach;
|
|
|
|
|
2022-03-14 15:40:45 +00:00
|
|
|
module.exports = function (target, cb /*, thisArg*/) {
|
2022-01-21 08:28:41 +00:00
|
|
|
if (isIterable(iterable(target))) forOf(target, cb, arguments[2]);
|
|
|
|
else forEach.call(target, cb, arguments[2]);
|
|
|
|
};
|