UNPKG
fannypack-v5
Version:
latest (5.0.0-rc.7)
5.0.0-rc.7
5.0.0-rc.0
An accessible, composable, and friendly React UI Kit
github.com/fannypackui
fannypackui/fannypack
fannypack-v5
/
src
/
utils
/
times.ts
2 lines
(1 loc)
•
95 B
text/typescript
View Raw
1
2
export
const
times
= (
n, func = (i) => i
) =>
Array
.
from
({
length
: n }).
map
(
(
_, i
) =>
func
(i));