update core-js

This commit is contained in:
Denis Pushkarev
2015-12-24 21:34:53 +06:00
parent 97faab3418
commit 49880e4e81
3 changed files with 20 additions and 10 deletions

View File

@@ -70,10 +70,6 @@ module.exports = {
values: "object/values"
},
RegExp: {
escape: "regexp/escape"
},
Math: {
acosh: "math/acosh",
asinh: "math/asinh",
@@ -91,7 +87,11 @@ module.exports = {
sign: "math/sign",
sinh: "math/sinh",
tanh: "math/tanh",
trunc: "math/trunc"
trunc: "math/trunc",
iaddh: "math/iaddh",
isubh: "math/isubh",
imulh: "math/imulh",
umulh: "math/umulh"
},
Symbol: {
@@ -116,14 +116,16 @@ module.exports = {
endsWith: "string/ends-with",
fromCodePoint: "string/from-code-point",
includes: "string/includes",
padLeft: "string/pad-left",
padRight: "string/pad-right",
padStart: "string/pad-start",
padEnd: "string/pad-end",
raw: "string/raw",
repeat: "string/repeat",
startsWith: "string/starts-with",
trim: "string/trim",
trimLeft: "string/trim-left",
trimRight: "string/trim-right"
trimRight: "string/trim-right",
trimStart: "string/trim-left",
trimEnd: "string/trim-right"
},
Number: {
@@ -153,6 +155,14 @@ module.exports = {
preventExtensions: "reflect/prevent-extensions",
setPrototypeOf: "reflect/set-prototype-of",
set: "reflect/set"
},
System: {
global: "system/global"
},
Error: {
isError: "error/is-error"
}
}
};