summaryrefslogtreecommitdiff
path: root/school/node_modules/@babel/runtime/helpers/maybeArrayLike.js
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/@babel/runtime/helpers/maybeArrayLike.js')
-rw-r--r--school/node_modules/@babel/runtime/helpers/maybeArrayLike.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/school/node_modules/@babel/runtime/helpers/maybeArrayLike.js b/school/node_modules/@babel/runtime/helpers/maybeArrayLike.js
new file mode 100644
index 0000000..5d00097
--- /dev/null
+++ b/school/node_modules/@babel/runtime/helpers/maybeArrayLike.js
@@ -0,0 +1,9 @@
+var arrayLikeToArray = require("./arrayLikeToArray.js");
+function _maybeArrayLike(next, arr, i) {
+ if (arr && !Array.isArray(arr) && typeof arr.length === "number") {
+ var len = arr.length;
+ return arrayLikeToArray(arr, i !== void 0 && i < len ? i : len);
+ }
+ return next(arr, i);
+}
+module.exports = _maybeArrayLike, module.exports.__esModule = true, module.exports["default"] = module.exports; \ No newline at end of file