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

package.internals.descriptors.js Maven / Gradle / Ivy

The newest version!
'use strict';
var fails = require('../internals/fails');

// Detect IE8's incomplete defineProperty implementation
module.exports = !fails(function () {
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy