mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
169 Bytes
"use strict";
var isArray = Array.isArray;
module.exports = function (value) {
if (isArray(value)) return value;
throw new TypeError(value + " is not an array");
};