e093d97e731492b75e501c04d61ee68ddb805f2b1f041adc0a92c60b668bb1f16ed6bbfc5017cf8ee55657f1757c9c5660b50c5d678afbaf7ef8b3dad772ef 325 B

12345678910
  1. 'use strict';
  2. var isPropertyDescriptor = require('./records/property-descriptor');
  3. module.exports = function isFullyPopulatedPropertyDescriptor(ES, Desc) {
  4. return isPropertyDescriptor(Desc)
  5. && '[[Enumerable]]' in Desc
  6. && '[[Configurable]]' in Desc
  7. && (ES.IsAccessorDescriptor(Desc) || ES.IsDataDescriptor(Desc));
  8. };