timepiece/node_modules/es5-ext/array/#/is-uniq.js

10 lines
261 B
JavaScript
Raw Normal View History

2024-05-14 14:54:12 +00:00
"use strict";
var indexOf = require("./e-index-of")
, every = Array.prototype.every
, isFirst;
isFirst = function (value, index) { return indexOf.call(this, value) === index; };
module.exports = function () { return every.call(this, isFirst, this); };