mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
177 Bytes
"use strict";
var from = require("./from")
, isArray = Array.isArray;
module.exports = function (arrayLike) { return isArray(arrayLike) ? arrayLike : from(arrayLike); };