lunr.Pipeline.prototype.remove = function()

in miredot/lib/lunr/js/lunr.js [457:464]


lunr.Pipeline.prototype.remove = function (fn) {
  var pos = this._stack.indexOf(fn)
  if (pos == -1) {
    return
  }

  this._stack.splice(pos, 1)
}