setup-python/node_modules/es-abstract/helpers/forEach.js
Stephen Franceschelli ec0a863019 Fix.
2019-07-30 13:16:01 -04:00

7 lines
151 B
JavaScript

'use strict';
module.exports = function forEach(array, callback) {
for (var i = 0; i < array.length; i += 1) {
callback(array[i], i, array);
}
};