Files
2025-04-21 16:03:20 +02:00

10 lines
261 B
JavaScript
Vendored

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