AbdulElahGwaith's picture
Upload folder using huggingface_hub
84c1942 verified
Raw
History Blame Contribute Delete
143 Bytes
export const range = (size: number, startAt: number = 0, skip: number = 1) =>
[...(Array(size).keys() as any)].map(i => i * skip + startAt);