diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2025-04-16 15:10:38 +0200 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2025-04-16 15:10:38 +0200 |
commit | f2b0723a9b2ca10c0f9ae3cc0041857bffe4c3d1 (patch) | |
tree | a7e37d3e187c4c5e6107383013195db0ed943987 | |
parent | 0c5d59f6a9f1fb6935e263603d2e8d45b9559fd5 (diff) | |
download | quickjs-f2b0723a9b2ca10c0f9ae3cc0041857bffe4c3d1.tar.gz quickjs-f2b0723a9b2ca10c0f9ae3cc0041857bffe4c3d1.zip |
added 'at' in Array.prototype[Symbol.unscopables]
-rw-r--r-- | quickjs.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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" |