mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
Issue #1639 - Implement object.fromEntries()
Adds a self-hosted implementation of this map->object conversion. This resolves #1639.
This commit is contained in:
parent
bc02e9541f
commit
065ef47e65
3 changed files with 21 additions and 2 deletions
|
|
@ -190,9 +190,9 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=933681
|
|||
constructorProps(["setPrototypeOf", "getOwnPropertyDescriptor", "getOwnPropertyDescriptors",
|
||||
"keys", "is", "defineProperty", "defineProperties", "create",
|
||||
"getOwnPropertyNames", "getOwnPropertySymbols",
|
||||
"preventExtensions", "freeze", "isFrozen", "seal",
|
||||
"preventExtensions", "freeze", "fromEntries", "isFrozen", "seal",
|
||||
"isSealed", "assign", "getPrototypeOf", "values",
|
||||
"entries", "isExtensible"])
|
||||
"entries", "isExtensible"]);
|
||||
gPrototypeProperties['Array'] =
|
||||
["length", "toSource", "toString", "toLocaleString", "join", "reverse", "sort", "push",
|
||||
"pop", "shift", "unshift", "splice", "concat", "slice", "lastIndexOf", "indexOf",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue