UNPKG
@belvo-finance/belvo-vue-components
Version:
latest (1.12.19)
1.12.19
## Project setup ``` npm install ```
@belvo-finance/belvo-vue-components
/
node_modules
/
lottie-web
/
player
/
js
/
utils
/
pooling
/
pooling.js
10 lines
(8 loc)
•
151 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
pooling = (
function
(
)
{
function
double
(
arr
)
{
return
arr.
concat
(
createSizedArray
(arr.length)); }
return
{
double
:
double
}; }());