github-pages-deploy-action/node_modules/core-js-pure/internals/descriptors.js

7 lines
213 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
var fails = require('../internals/fails');
// Thank's IE8 for his funny defineProperty
module.exports = !fails(function () {
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
});