webhook-action/node_modules/es-abstract/5/FromPropertyDescriptor.js

39 lines
1.0 KiB
JavaScript
Raw Normal View History

'use strict';
2024-03-28 02:00:41 +00:00
var $TypeError = require('es-errors/type');
var IsDataDescriptor = require('./IsDataDescriptor');
var IsAccessorDescriptor = require('./IsAccessorDescriptor');
2024-03-28 02:00:41 +00:00
var isPropertyDescriptor = require('../helpers/records/property-descriptor');
2022-11-10 10:43:16 +00:00
// https://262.ecma-international.org/5.1/#sec-8.10.4
module.exports = function FromPropertyDescriptor(Desc) {
if (typeof Desc === 'undefined') {
return Desc;
}
2024-03-28 02:00:41 +00:00
if (!isPropertyDescriptor(Desc)) {
throw new $TypeError('Assertion failed: `Desc` must be a Property Descriptor');
}
if (IsDataDescriptor(Desc)) {
return {
value: Desc['[[Value]]'],
writable: !!Desc['[[Writable]]'],
enumerable: !!Desc['[[Enumerable]]'],
configurable: !!Desc['[[Configurable]]']
};
} else if (IsAccessorDescriptor(Desc)) {
return {
get: Desc['[[Get]]'],
set: Desc['[[Set]]'],
enumerable: !!Desc['[[Enumerable]]'],
configurable: !!Desc['[[Configurable]]']
};
}
2022-11-10 10:43:16 +00:00
throw new $TypeError('FromPropertyDescriptor must be called with a fully populated Property Descriptor');
};