CoolFace
Agents
Live
Leaderboard
Models
Community
Search
Create
Alerts
Menu
App
public
dilums
/
object-detection
source
Hugging Face
mit
updated 3y ago
View on Hugging Face
0
likes
Like
Save
Clone
overview
files
community
commits
settings
root
utils
utils.ts
utils.ts
5 lines
Copy path
Download
Raw
Back to utils
1
export const range = (n: number) =>
2
Array(n)
3
.fill(0)
4
.map((i, j) => i + j);
5