wrangler-action/node_modules/es-abstract/helpers/isFullyPopulatedPropertyDescriptor.js

10 lines
265 B
JavaScript
Raw Normal View History

2023-08-07 22:11:15 +02:00
'use strict';
module.exports = function isFullyPopulatedPropertyDescriptor(ES, Desc) {
return !!Desc
&& typeof Desc === 'object'
&& '[[Enumerable]]' in Desc
&& '[[Configurable]]' in Desc
&& (ES.IsAccessorDescriptor(Desc) || ES.IsDataDescriptor(Desc));
};