Welcome to mirror list, hosted at ThFree Co, Russian Federation.

forEach.js « helpers « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35915a656a07edc2affdc8f872293923426a0ecb (plain)
1
2
3
4
5
6
7
'use strict';

module.exports = function forEach(array, callback) {
	for (var i = 0; i < array.length; i += 1) {
		callback(array[i], i, array); // eslint-disable-line callback-return
	}
};