Lorenzob's picture
Upload folder using huggingface_hub
19605ab verified
raw
history blame
156 Bytes
export default function map(arr, fn) {
var res = [], i;
for (i = 0; i < arr.length; ++i) {
res.push(fn(arr[i], i));
}
return res;
}