• Jump To … +
    chain.js classList.js collection.js delegate.js extend.js has.js invoke.js isBlank.js isFunction.js isObject.js isRegExp.js isString.js isUndefined.js mapEvents.js mapSelections.js matches.js pluck.js query.js queryAll.js result.js tap.js template.js tokenize.js util.js washi.js
  • tap.js

  • ¶

    Useful when chaining, simply calls a function within a given scope on a set of items.

     module.exports = function(items, fn, scope) {
      fn.call(scope, items);
    };