uniq.js 266 B

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