From f2b0723a9b2ca10c0f9ae3cc0041857bffe4c3d1 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Wed, 16 Apr 2025 15:10:38 +0200 Subject: [PATCH] added 'at' in Array.prototype[Symbol.unscopables] --- quickjs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/quickjs.c b/quickjs.c index e9d2408..2bca946 100644 --- a/quickjs.c +++ b/quickjs.c @@ -51128,6 +51128,7 @@ void JS_AddIntrinsicBaseObjects(JSContext *ctx) { /* initialize Array.prototype[Symbol.unscopables] */ static const char unscopables[] = + "at" "\0" "copyWithin" "\0" "entries" "\0" "fill" "\0"