Skip to content
Snippets Groups Projects
Select Git revision
  • b45a79bfb62419e4cf728875db5ea1c573e71e4b
  • master default protected
2 results

Questions.pm

Blame
  • 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
      }
    };