UNPKG
@configurator/ravendb
Version:
latest (5.4.8)
5.4.8
5.4.7
5.4.6
5.4.5
5.4.4
5.4.3
4.0.0-rc4
RavenDB client for Node.js
ravendb.net
ravendb/ravendb-nodejs-client
@configurator/ravendb
/
dist
/
Utility
/
ArrayUtil.js
11 lines
•
303 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
ArrayUtil
=
void
0
;
class
ArrayUtil
{
static
range
(
n, func
) {
return
new
Array
(n) .
fill
(
null
).
map
(
(
x, i
) =>
func
(i)); } }
exports
.
ArrayUtil
=
ArrayUtil
;
//# sourceMappingURL=ArrayUtil.js.map