1
0
mirror of https://github.com/actions/setup-node synced 2025-05-10 01:47:47 +00:00
setup-node/node_modules/es-abstract/helpers/forEach.js
eric sciple ae5dcb46c8 .
2020-01-24 12:30:26 -05:00

8 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);
}
};