massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / descriptors.js
1 var fails = require('../internals/fails');
2
3 // Detect IE8's incomplete defineProperty implementation
4 module.exports = !fails(function () {
5   // eslint-disable-next-line es/no-object-defineproperty -- required for testing
6   return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
7 });