Skip to content
This repository has been archived by the owner on May 11, 2018. It is now read-only.

Commit

Permalink
change format
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoo committed Dec 2, 2016
1 parent 99d6cc4 commit 80be6c7
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 132 deletions.
113 changes: 49 additions & 64 deletions data/builtInFeatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,68 +5,53 @@ module.exports = {
// es2015
// core-js/fn/map

// "typed": "typed arrays", ?
// "typed/array-buffer": "typed arrays / ", ?
"typed/data-view": "typed arrays / DataView",
"typed/int8-array": "typed arrays / Int8Array",
"typed/uint8-array": "typed arrays / Uint8Array",
"typed/uint8-clamped-array": "typed arrays / Uint8ClampedArray",
"typed/int16-array": "typed arrays / Int16Array",
"typed/uint16-array": "typed arrays / Uint16Array",
"typed/int32-array": "typed arrays / Int32Array",
"typed/uint32-array": "typed arrays / Uint32Array",
"typed/float32-array": "typed arrays / Float32Array",
"typed/float64-array": "typed arrays / Float64Array",

"map": "Map",
"set": "Set",
"weak-map": "WeakMap",
"weak-set": "WeakSet",

// No polyfill for proxy

"reflect": "Reflect",
"reflect/apply": "Reflect / ",
"reflect/construct": "Reflect / Reflect.construct",
"reflect/define-property": "Reflect / Reflect.defineProperty",
"reflect/delete-property": "Reflect / Reflect.deleteProperty",
"reflect/get": "Reflect / Reflect.get",
"reflect/get-own-property-descriptor": "Reflect / Reflect.getOwnPropertyDescriptor",
"reflect/get-prototype-of": "Reflect / Reflect.getPrototypeOf",
"reflect/has": "Reflect / Reflect.has",
"reflect/is-extensible": "Reflect / Reflect.isExtensible",
"reflect/own-keys": "Reflect / Reflect.ownKeys",
"reflect/prevent-extensions": "Reflect / Reflect.preventExtensions",
"reflect/set": "Reflect / Reflect.set",
"reflect/set-prototype-of": "Reflect / Reflect.setPrototypeOf",

"promise": "Promise",

"symbol": "Symbol",
"symbol/for": "Symbol / global symbol registry",
"symbol/key-for": "Symbol / global symbol registry",

"symbol/has-instance": "well-known symbols / Symbol.hasInstance",
"symbol/is-concat-spreadable": "well-known symbols / Symbol.isConcatSpreadable",
"symbol/iterator": "well-known symbols / Symbol.iterator",
"symbol/match": "well-known symbols / Symbol.match",
"symbol/replace": "well-known symbols / Symbol.replace",
"symbol/search": "well-known symbols / Symbol.search",
"symbol/species": "well-known symbols / Symbol.species",
"symbol/split": "well-known symbols / Symbol.split",
"symbol/to-primitive": "well-known symbols / Symbol.toPrimitive",
"symbol/to-string-tag": "well-known symbols / Symbol.toStringTag",
"symbol/unscopables": "well-known symbols / Symbol.unscopables",

"object/assign": "Object static methods / Object.assign",
"object/is": "Object static methods / Object.is",
"object/get-own-property-symbols": "Object static methods / Object.getOwnPropertySymbols",
"object/set-prototype-of": "Object static methods / Object.setPrototypeOf",

"function/name": 'function "name" property',

"string/raw": "String static methods / String.raw",
"string/string/from-code-point": "String static methods / String.fromCodePoint",

// String.prototype methods
// "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",
};
Loading

0 comments on commit 80be6c7

Please sign in to comment.