Select Git revision
test_node.py
-
jan.bednarik authoredjan.bednarik 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
}
};