1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 10:52:47 +00:00
Files
mywebsite/node_modules/es5-ext/array/#/is-uniq.js

13 lines
261 B
JavaScript

'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); };