summaryrefslogtreecommitdiff
path: root/src/node_modules/es-abstract/helpers/forEach.js
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
	}
};