uniq.js 263 B

123456789
  1. "use strict";
  2. var indexOf = require("./e-index-of")
  3. , filter = Array.prototype.filter
  4. , isFirst;
  5. isFirst = function (value, index) { return indexOf.call(this, value) === index; };
  6. module.exports = function () { return filter.call(this, isFirst, this); };