mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
261 Bytes
"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); };