UNPKG
repture
Version:
latest (1.0.0)
1.0.0
Lightweight JavaScript ES6 based utility library
github.com/theahmadzai/repture
theahmadzai/repture
repture
/
src
/
array
/
fill.ts
4 lines
(3 loc)
•
125 B
text/typescript
View Raw
1
2
3
4
export
default
function
fill
(
array
:
any
,
value
:
any
,
start
:
number
,
end
:
number
) {
return
array.
fill
(value, start, end); }