astro-ghostcms/.pnpm-store/v3/files/79/2711b5c1605dd7378b708086f5c...

10 lines
265 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00: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));
};