Remove unneeded getOwnPropertySymbols polyfill

This commit is contained in:
Bryan Housel
2019-03-24 01:48:36 -04:00
parent 5280d07bad
commit 26113d0e25

View File

@@ -37,10 +37,3 @@ mocha.setup({
expect = chai.expect;
window.d3 = iD.d3; // TODO: remove
// Object.getOwnPropertySymbols polyfill (For PhantomJS / IE11) - #6001
if (!Object.getOwnPropertySymbols) {
Object.defineProperty(Object.prototype, 'getOwnPropertySymbols', {
value: function() { return []; }
});
}