Enable a few disabled core-js utils now that we're reading for them in 7.x.

This commit is contained in:
Logan Smyth
2018-08-26 13:52:19 -07:00
parent e0ee0570be
commit 130814342a

View File

@@ -10,8 +10,8 @@ export default {
setImmediate: "set-immediate",
clearImmediate: "clear-immediate",
asap: "asap",
//parseFloat: "parse-float", // temporary disabled
//parseInt: "parse-int" // temporary disabled
parseFloat: "parse-float",
parseInt: "parse-int",
},
methods: {
@@ -27,7 +27,7 @@ export default {
from: "array/from",
includes: "array/includes",
indexOf: "array/index-of",
//isArray: "array/is-array", // temporary disabled
isArray: "array/is-array",
join: "array/join",
keys: "array/keys",
lastIndexOf: "array/last-index-of",
@@ -169,7 +169,7 @@ export default {
},
Date: {
//now: "date/now" // temporary disabled
now: "date/now",
},
Function: {