]> Lady’s Gitweb - Pisces/blobdiff - collection.js
Move arraylike functions into object.js
[Pisces] / collection.js
index 69c0beefabf16bd9d64fe57f17f82d8ab11dd3e7..03326a6cd0de048259206c4310cec6f73d8d2d9e 100644 (file)
@@ -8,7 +8,7 @@
 // file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
 
 import { call, createCallableFunction } from "./function.js";
-import { lengthOfArraylike, toIndex, type } from "./value.js";
+import { toIndex, type } from "./value.js";
 
 const { prototype: arrayPrototype } = Array;
 
@@ -193,19 +193,6 @@ export const indices = createCallableFunction(
   "indices",
 );
 
-/** Returns whether the provided value is arraylike. */
-export const isArraylikeObject = ($) => {
-  if (type($) !== "object") {
-    return false;
-  } else {
-    try {
-      lengthOfArraylike($); // throws if not arraylike
-      return true;
-    } catch {
-      return false;
-    }
-  }
-};
 
 /**
  * Returns whether the provided object is a collection.
This page took 0.023382 seconds and 4 git commands to generate.