Merge pull request #3228 from babel/revert-3208-remove-array-generics-from-runtime
Revert "remove array generics from runtime"
This commit is contained in:
commit
2516b7570f
@ -12,15 +12,34 @@ module.exports = {
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
Array: {
|
Array: {
|
||||||
|
concat: "array/concat",
|
||||||
copyWithin: "array/copy-within",
|
copyWithin: "array/copy-within",
|
||||||
entries: "array/entries",
|
entries: "array/entries",
|
||||||
|
every: "array/every",
|
||||||
fill: "array/fill",
|
fill: "array/fill",
|
||||||
|
filter: "array/filter",
|
||||||
findIndex: "array/find-index",
|
findIndex: "array/find-index",
|
||||||
find: "array/find",
|
find: "array/find",
|
||||||
|
forEach: "array/for-each",
|
||||||
from: "array/from",
|
from: "array/from",
|
||||||
includes: "array/includes",
|
includes: "array/includes",
|
||||||
|
indexOf: "array/index-of",
|
||||||
|
join: "array/join",
|
||||||
keys: "array/keys",
|
keys: "array/keys",
|
||||||
|
lastIndexOf: "array/last-index-of",
|
||||||
|
map: "array/map",
|
||||||
of: "array/of",
|
of: "array/of",
|
||||||
|
pop: "array/pop",
|
||||||
|
push: "array/push",
|
||||||
|
reduceRight: "array/reduce-right",
|
||||||
|
reduce: "array/reduce",
|
||||||
|
reverse: "array/reverse",
|
||||||
|
shift: "array/shift",
|
||||||
|
slice: "array/slice",
|
||||||
|
some: "array/some",
|
||||||
|
sort: "array/sort",
|
||||||
|
splice: "array/splice",
|
||||||
|
unshift: "array/unshift",
|
||||||
values: "array/values"
|
values: "array/values"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user