Revert "remove array generics from runtime"

This commit is contained in:
Sebastian McKenzie 2016-01-03 03:42:10 +00:00
parent e68754faf2
commit 3fa51097a6

View File

@ -12,15 +12,34 @@ module.exports = {
methods: {
Array: {
concat: "array/concat",
copyWithin: "array/copy-within",
entries: "array/entries",
every: "array/every",
fill: "array/fill",
filter: "array/filter",
findIndex: "array/find-index",
find: "array/find",
forEach: "array/for-each",
from: "array/from",
includes: "array/includes",
indexOf: "array/index-of",
join: "array/join",
keys: "array/keys",
lastIndexOf: "array/last-index-of",
map: "array/map",
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"
},