mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 06:09:30 +08:00
7 lines
223 B
Text
7 lines
223 B
Text
'use strict';
|
|
|
|
module.exports = function isFullyPopulatedPropertyDescriptor(ES, Desc) {
|
|
return '[[Enumerable]]' in Desc
|
|
&& '[[Configurable]]' in Desc
|
|
&& (ES.IsAccessorDescriptor(Desc) || ES.IsDataDescriptor(Desc));
|
|
};
|