diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-19 23:11:17 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-19 23:11:17 +0200 |
commit | afa20191e322c63712fd9889ca023ba3fee7455e (patch) | |
tree | 5f289528d555a2b7f2906c72591773814d6e0ea4 /js/src/tests | |
parent | eb395086e8339e30123c4f6fc56a9c2d5e173e65 (diff) | |
download | aura-central-afa20191e322c63712fd9889ca023ba3fee7455e.tar.gz |
Implement array.flat and array.flatMap
Self-hosted implementation that adds both functions and adds them to
@@unscopables as specced in ES2019.
Resolves %1095
Diffstat (limited to 'js/src/tests')
-rw-r--r-- | js/src/tests/ecma_6/Array/unscopables.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/src/tests/ecma_6/Array/unscopables.js b/js/src/tests/ecma_6/Array/unscopables.js index 6685309a0..56b3aa520 100644 --- a/js/src/tests/ecma_6/Array/unscopables.js +++ b/js/src/tests/ecma_6/Array/unscopables.js @@ -26,6 +26,8 @@ assertDeepEq(keys, [ "fill", "find", "findIndex", + "flat", + "flatMap", "includes", "keys", "values" |