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

Commit

Permalink
Fix issue with Object.getOwnPropertySymbols (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
existentialism authored and hzoo committed Dec 10, 2016
1 parent 5aee448 commit a5884fa
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion data/builtInFeatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const es2015 = {
"es6.symbol": {
features: [
"Symbol",
"Object static methods / Object.getOwnPropertySymbols",
"well-known symbols / Symbol.hasInstance",
"well-known symbols / Symbol.isConcatSpreadable",
"well-known symbols / Symbol.iterator",
Expand All @@ -54,7 +55,6 @@ const es2015 = {

"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',
Expand Down
9 changes: 0 additions & 9 deletions data/builtIns.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,15 +262,6 @@
"android": 4.1,
"ios": 9
},
"es6.object.get-own-property-symbols": {
"chrome": 38,
"opera": 25,
"edge": 12,
"firefox": 36,
"safari": 9,
"node": 0.12,
"ios": 9
},
"es6.object.set-prototype-of": {
"chrome": 34,
"opera": 21,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import "core-js/modules/es6.promise";
import "core-js/modules/es6.symbol";
import "core-js/modules/es6.object.assign";
import "core-js/modules/es6.object.is";
import "core-js/modules/es6.object.get-own-property-symbols";
import "core-js/modules/es6.object.set-prototype-of";
import "core-js/modules/es6.function.name";
import "core-js/modules/es6.string.raw";
Expand Down

0 comments on commit a5884fa

Please sign in to comment.