add missing Reflect methods to runtime transformer #1248
This commit is contained in:
parent
e1d76a1dfe
commit
335bdffec2
@ -13,6 +13,11 @@ _Note: Gaps between patch versions are faulty/broken releases._
|
|||||||
|
|
||||||
See [CHANGELOG - 6to5](CHANGELOG-6to5.md) for the pre-4.0.0 version changelog.
|
See [CHANGELOG - 6to5](CHANGELOG-6to5.md) for the pre-4.0.0 version changelog.
|
||||||
|
|
||||||
|
## 5.1.4
|
||||||
|
|
||||||
|
* **Polish**
|
||||||
|
* Add missing `Reflect` methods to runtime transformer.
|
||||||
|
|
||||||
## 5.1.3
|
## 5.1.3
|
||||||
|
|
||||||
* **Internal**
|
* **Internal**
|
||||||
|
|||||||
@ -41,6 +41,7 @@
|
|||||||
"unshift": "array/unshift",
|
"unshift": "array/unshift",
|
||||||
"values": "array/values"
|
"values": "array/values"
|
||||||
},
|
},
|
||||||
|
|
||||||
"Object": {
|
"Object": {
|
||||||
"assign": "object/assign",
|
"assign": "object/assign",
|
||||||
"classof": "object/classof",
|
"classof": "object/classof",
|
||||||
@ -65,13 +66,16 @@
|
|||||||
"setPrototypeOf": "object/set-prototype-of",
|
"setPrototypeOf": "object/set-prototype-of",
|
||||||
"values": "object/values"
|
"values": "object/values"
|
||||||
},
|
},
|
||||||
|
|
||||||
"RegExp": {
|
"RegExp": {
|
||||||
"escape": "regexp/escape"
|
"escape": "regexp/escape"
|
||||||
},
|
},
|
||||||
|
|
||||||
"Function": {
|
"Function": {
|
||||||
"only": "function/only",
|
"only": "function/only",
|
||||||
"part": "function/part"
|
"part": "function/part"
|
||||||
},
|
},
|
||||||
|
|
||||||
"Math": {
|
"Math": {
|
||||||
"acosh": "math/acosh",
|
"acosh": "math/acosh",
|
||||||
"asinh": "math/asinh",
|
"asinh": "math/asinh",
|
||||||
@ -92,11 +96,13 @@
|
|||||||
"tanh": "math/tanh",
|
"tanh": "math/tanh",
|
||||||
"trunc": "math/trunc"
|
"trunc": "math/trunc"
|
||||||
},
|
},
|
||||||
|
|
||||||
"Date": {
|
"Date": {
|
||||||
"addLocale": "date/add-locale",
|
"addLocale": "date/add-locale",
|
||||||
"formatUTC": "date/format-utc",
|
"formatUTC": "date/format-utc",
|
||||||
"format": "date/format"
|
"format": "date/format"
|
||||||
},
|
},
|
||||||
|
|
||||||
"Symbol": {
|
"Symbol": {
|
||||||
"for": "symbol/for",
|
"for": "symbol/for",
|
||||||
"hasInstance": "symbol/for-instance",
|
"hasInstance": "symbol/for-instance",
|
||||||
@ -112,6 +118,7 @@
|
|||||||
"toStringTag": "symbol/to-string-tag",
|
"toStringTag": "symbol/to-string-tag",
|
||||||
"unscopables": "symbol/unscopables"
|
"unscopables": "symbol/unscopables"
|
||||||
},
|
},
|
||||||
|
|
||||||
"String": {
|
"String": {
|
||||||
"at": "string/at",
|
"at": "string/at",
|
||||||
"codePointAt": "string/code-point-at",
|
"codePointAt": "string/code-point-at",
|
||||||
@ -124,8 +131,9 @@
|
|||||||
"startsWith": "string/starts-with",
|
"startsWith": "string/starts-with",
|
||||||
"unescapeHTML": "string/unescape-html"
|
"unescapeHTML": "string/unescape-html"
|
||||||
},
|
},
|
||||||
|
|
||||||
"Number": {
|
"Number": {
|
||||||
"epsilon": "number/epsilon",
|
"EPSILON": "number/epsilon",
|
||||||
"isFinite": "number/is-finite",
|
"isFinite": "number/is-finite",
|
||||||
"isInteger": "number/is-integer",
|
"isInteger": "number/is-integer",
|
||||||
"isNaN": "number/is-nan",
|
"isNaN": "number/is-nan",
|
||||||
@ -135,6 +143,23 @@
|
|||||||
"parseFloat": "number/parse-float",
|
"parseFloat": "number/parse-float",
|
||||||
"parseInt": "number/parse-int",
|
"parseInt": "number/parse-int",
|
||||||
"random": "number/random"
|
"random": "number/random"
|
||||||
|
},
|
||||||
|
|
||||||
|
"Reflect": {
|
||||||
|
"apply": "reflect/apply",
|
||||||
|
"construct": "reflect/construct",
|
||||||
|
"defineProperty": "reflect/define-property",
|
||||||
|
"deleteProperty": "reflect/delete-property",
|
||||||
|
"enumerate": "reflect/enumerate",
|
||||||
|
"getOwnPropertyDescriptor": "reflect/get-own-property-descriptor",
|
||||||
|
"getPrototypeOf": "reflect/get-prototype-of",
|
||||||
|
"get": "reflect/get",
|
||||||
|
"has": "reflect/has",
|
||||||
|
"isExtensible": "reflect/is-extensible",
|
||||||
|
"ownKeys": "reflect/own-keys",
|
||||||
|
"preventExtensions": "reflect/prevent-extensions",
|
||||||
|
"setPrototypeOf": "reflect/set-prototype-of",
|
||||||
|
"set": "reflect/set",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user