Select Git revision
-
Alexa Valentová authoredAlexa Valentová authored
utils.js 178 B
export const forEachNode = function (array, callback, scope) {
for (var i = 0; i < array.length; i++) {
callback.call(scope, array[i]); // passes back stuff we need
}
};