2016-12-02 16:04:02 -05:00

58 lines
2.9 KiB
JavaScript

// https://github.com/zloirock/core-js
/* eslint-disable quotes */
module.exports = {
// es2015
// core-js/fn/map
// "es6.typed/array-buffer": "typed arrays / ",
"es6.typed.data-view": "typed arrays / DataView",
"es6.typed.int8-array": "typed arrays / Int8Array",
"es6.typed.uint8-array": "typed arrays / Uint8Array",
"es6.typed.uint8-clamped-array": "typed arrays / Uint8ClampedArray",
"es6.typed.int16-array": "typed arrays / Int16Array",
"es6.typed.uint16-array": "typed arrays / Uint16Array",
"es6.typed.int32-array": "typed arrays / Int32Array",
"es6.typed.uint32-array": "typed arrays / Uint32Array",
"es6.typed.float32-array": "typed arrays / Float32Array",
"es6.typed.float64-array": "typed arrays / Float64Array",
"es6.map": "Map",
"es6.set": "Set",
"es6.weak-map": "WeakMap",
"es6.weak-set": "WeakSet",
"es6.reflect": "Reflect",
"es6.reflect.apply": "Reflect / ",
"es6.reflect.construct": "Reflect / Reflect.construct",
"es6.reflect.define-property": "Reflect / Reflect.defineProperty",
"es6.reflect.delete-property": "Reflect / Reflect.deleteProperty",
"es6.reflect.get": "Reflect / Reflect.get",
"es6.reflect.get-own-property-descriptor": "Reflect / Reflect.getOwnPropertyDescriptor",
"es6.reflect.get-prototype-of": "Reflect / Reflect.getPrototypeOf",
"es6.reflect.has": "Reflect / Reflect.has",
"es6.reflect.is-extensible": "Reflect / Reflect.isExtensible",
"es6.reflect.own-keys": "Reflect / Reflect.ownKeys",
"es6.reflect.prevent-extensions": "Reflect / Reflect.preventExtensions",
"es6.reflect.set": "Reflect / Reflect.set",
"es6.reflect.set-prototype-of": "Reflect / Reflect.setPrototypeOf",
"es6.promise": "Promise",
"es6.symbol": "Symbol",
"es6.symbol.has-instance": "well-known symbols / Symbol.hasInstance",
"es6.symbol.is-concat-spreadable": "well-known symbols / Symbol.isConcatSpreadable",
"es6.symbol.iterator": "well-known symbols / Symbol.iterator",
"es6.symbol.match": "well-known symbols / Symbol.match",
"es6.symbol.replace": "well-known symbols / Symbol.replace",
"es6.symbol.search": "well-known symbols / Symbol.search",
"es6.symbol.species": "well-known symbols / Symbol.species",
"es6.symbol.split": "well-known symbols / Symbol.split",
"es6.symbol.to-primitive": "well-known symbols / Symbol.toPrimitive",
"es6.symbol.to-string-tag": "well-known symbols / Symbol.toStringTag",
"es6.symbol.unscopables": "well-known symbols / Symbol.unscopables",
"es6.object.assign": "Object static methods / Object.assign",
"es6.object.is": "Object static methods / Object.is",
"es6.object.get-own-property-symbols": "Object static methods / Object.getOwnPropertySymbols",
"es6.object.set-prototype-of": "Object static methods / Object.setPrototypeOf",
"es6.function.name": 'function "name" property',
"es6.string.raw": "String static methods / String.raw",
"es6.string.from-code-point": "String static methods / String.fromCodePoint",
};