Latest updates from IceHrmPro
This commit is contained in:
7
web/node_modules/moment/src/lib/utils/map.js
generated
vendored
Normal file
7
web/node_modules/moment/src/lib/utils/map.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function map(arr, fn) {
|
||||
var res = [], i;
|
||||
for (i = 0; i < arr.length; ++i) {
|
||||
res.push(fn(arr[i], i));
|
||||
}
|
||||
return res;
|
||||
}
|
||||
Reference in New Issue
Block a user