]> gerrit.simantics Code Review - simantics/district.git/blob - for-each.js
f1e20425b329a2c86389731db378a0762d622de2
[simantics/district.git] / for-each.js
1 'use strict';
2
3 var forOf      = require('es6-iterator/for-of')
4   , isIterable = require('es6-iterator/is-iterable')
5   , iterable   = require('./validate')
6
7   , forEach = Array.prototype.forEach;
8
9 module.exports = function (target, cb/*, thisArg*/) {
10         if (isIterable(iterable(target))) forOf(target, cb, arguments[2]);
11         else forEach.call(target, cb, arguments[2]);
12 };