DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
120 Bytes
export default function(series) {
var n = series.length, o = new Array(n);
while (--n >= 0) o[n] = n;
return o;
}