DIR: /proc/self/root/usr/share/node_modules/es-abstract/helpers/ |
Current File : //proc/self/root/usr/share/node_modules/es-abstract/helpers/isFullyPopulatedPropertyDescriptor.js |
'use strict'; module.exports = function isFullyPopulatedPropertyDescriptor(ES, Desc) { return '[[Enumerable]]' in Desc && '[[Configurable]]' in Desc && (ES.IsAccessorDescriptor(Desc) || ES.IsDataDescriptor(Desc)); }; |