summaryrefslogtreecommitdiffstats
path: root/bower_components/moment/src/lib/utils/map.js
diff options
context:
space:
mode:
Diffstat (limited to 'bower_components/moment/src/lib/utils/map.js')
-rw-r--r--bower_components/moment/src/lib/utils/map.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/bower_components/moment/src/lib/utils/map.js b/bower_components/moment/src/lib/utils/map.js
deleted file mode 100644
index 1cbc563..0000000
--- a/bower_components/moment/src/lib/utils/map.js
+++ /dev/null
@@ -1,7 +0,0 @@
-export default function map(arr, fn) {
- var res = [], i;
- for (i = 0; i < arr.length; ++i) {
- res.push(fn(arr[i], i));
- }
- return res;
-}