summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2025-04-16 15:10:38 +0200
committerFabrice Bellard <fabrice@bellard.org>2025-04-16 15:10:38 +0200
commitf2b0723a9b2ca10c0f9ae3cc0041857bffe4c3d1 (patch)
treea7e37d3e187c4c5e6107383013195db0ed943987
parent0c5d59f6a9f1fb6935e263603d2e8d45b9559fd5 (diff)
downloadquickjs-f2b0723a9b2ca10c0f9ae3cc0041857bffe4c3d1.tar.gz
quickjs-f2b0723a9b2ca10c0f9ae3cc0041857bffe4c3d1.zip
added 'at' in Array.prototype[Symbol.unscopables]
-rw-r--r--quickjs.c1
1 files changed, 1 insertions, 0 deletions
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"