summaryrefslogtreecommitdiff
path: root/school/node_modules/@arr/every/module.js
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/@arr/every/module.js')
-rw-r--r--school/node_modules/@arr/every/module.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/school/node_modules/@arr/every/module.js b/school/node_modules/@arr/every/module.js
deleted file mode 100644
index 18a4208..0000000
--- a/school/node_modules/@arr/every/module.js
+++ /dev/null
@@ -1,11 +0,0 @@
-export default function (arr, cb) {
- var i=0, len=arr.length;
-
- for (; i < len; i++) {
- if (!cb(arr[i], i, arr)) {
- return false;
- }
- }
-
- return true;
-}