All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.ie8-dom-define.js Maven / Gradle / Ivy

There is a newer version: 3.39.0
Show newest version
'use strict';
var DESCRIPTORS = require('../internals/descriptors');
var fails = require('../internals/fails');
var createElement = require('../internals/document-create-element');

// Thanks to IE8 for its funny defineProperty
module.exports = !DESCRIPTORS && !fails(function () {
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  return Object.defineProperty(createElement('div'), 'a', {
    get: function () { return 7; }
  }).a !== 7;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy