diff options
author | Moonchild <moonchild@palemoon.org> | 2020-09-06 10:01:37 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-09-06 10:02:00 +0000 |
commit | 1154e48843479efa00d81712cafcd9e520180030 (patch) | |
tree | 7702fbe0d5adc205b30856dae5d5063b3b81d9ba /js/src | |
parent | 9440be0ae35650e9ffd9d2ec3692c6fc932c3582 (diff) | |
download | uxp-1154e48843479efa00d81712cafcd9e520180030.tar.gz |
Issue #1639 - Implement object.fromEntries()
Adds a self-hosted implementation of this map->object conversion.
This resolves #1639.
Diffstat (limited to 'js/src')
-rw-r--r-- | js/src/builtin/Object.cpp | 1 | ||||
-rw-r--r-- | js/src/builtin/Object.js | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/js/src/builtin/Object.cpp b/js/src/builtin/Object.cpp index bfcc8d20ef..d3001b69e4 100644 --- a/js/src/builtin/Object.cpp +++ b/js/src/builtin/Object.cpp @@ -1239,6 +1239,7 @@ static const JSFunctionSpec object_static_methods[] = { JS_FN("isFrozen", obj_isFrozen, 1, 0), JS_FN("seal", obj_seal, 1, 0), JS_FN("isSealed", obj_isSealed, 1, 0), + JS_SELF_HOSTED_FN("fromEntries", "ObjectFromEntries", 1, 0), JS_FS_END }; diff --git a/js/src/builtin/Object.js b/js/src/builtin/Object.js index 9ed1be0e12..c4739037e3 100644 --- a/js/src/builtin/Object.js +++ b/js/src/builtin/Object.js @@ -202,3 +202,21 @@ function ObjectLookupGetter(name) { // Step 3.d. (implicit) } + +// Stage 4 draft 2020-09-06 https://tc39.github.io/proposal-object-from-entries/ +// Object.fromEntries (iterable) +function ObjectFromEntries(iter) { + // We omit the usual step number comments here because they don't help. + // This implementation inlines AddEntriesFromIterator and + // CreateDataPropertyOnObject, so it looks more like the polyfill + // than the step-by-step spec algorithm. + const obj = {}; + + for (const pair of allowContentIter(iter)) { + if (!IsObject(pair)) + ThrowTypeError(JSMSG_INVALID_MAP_ITERABLE, "Object.fromEntries"); + _DefineDataProperty(obj, pair[0], pair[1]); + } + + return obj; +} |