]> Lady’s Gitweb - Pisces/blobdiff - collection.js
Move isConcatSpreadable[Object] into object.js
[Pisces] / collection.js
index 03326a6cd0de048259206c4310cec6f73d8d2d9e..d340709750c26f1ca902f0ee6d0d8eceae33b483 100644 (file)
@@ -8,6 +8,7 @@
 // file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
 
 import { call, createCallableFunction } from "./function.js";
+import { isConcatSpreadableObject } from "./object.js";
 import { toIndex, type } from "./value.js";
 
 const { prototype: arrayPrototype } = Array;
@@ -193,7 +194,6 @@ export const indices = createCallableFunction(
   "indices",
 );
 
-
 /**
  * Returns whether the provided object is a collection.
  *
@@ -215,31 +215,13 @@ export const isCollection = ($) => {
   } else {
     try {
       toIndex($.length); // will throw if `length` is not an index
-      return isConcatSpreadable($);
+      return isConcatSpreadableObject($);
     } catch {
       return false;
     }
   }
 };
 
-/**
- * Returns whether the provided value is spreadable during array
- * concatenation.
- *
- * This is also used to determine which things should be treated as
- * collections.
- */
-export const isConcatSpreadable = ($) => {
-  if (type($) !== "object") {
-    // The provided value is not an object.
-    return false;
-  } else {
-    // The provided value is an object.
-    const spreadable = $[Symbol.isConcatSpreadable];
-    return spreadable !== undefined ? !!spreadable : isArray($);
-  }
-};
-
 /**
  * Returns an iterator over the items in the provided value according
  * to the algorithm of `Array::values`.
This page took 0.020576 seconds and 4 git commands to generate.