From 9aa13723aa5b12157811677a31bce62674fc53b4 Mon Sep 17 00:00:00 2001 From: Paul Valladares <85648028+dreyfus92@users.noreply.github.com> Date: Tue, 28 Apr 2026 19:00:58 -0500 Subject: [PATCH] feat(native): map `is-arrayish` to `Array.isArray` --- manifests/native.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/manifests/native.json b/manifests/native.json index 565021d..3343c59 100644 --- a/manifests/native.json +++ b/manifests/native.json @@ -2217,6 +2217,11 @@ "moduleName": "indexof", "replacements": ["Array.prototype.indexOf"] }, + "is-arrayish": { + "type": "module", + "moduleName": "is-arrayish", + "replacements": ["Array.isArray"] + }, "is-buffer": { "type": "module", "moduleName": "is-buffer",