source: frontend/node_modules/core-js/internals/descriptors.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 323 bytes
Line 
1'use strict';
2var fails = require('../internals/fails');
3
4// Detect IE8's incomplete defineProperty implementation
5module.exports = !fails(function () {
6 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
7 return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
8});
Note: See TracBrowser for help on using the repository browser.