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

27 lines
627 B
JavaScript
Raw Normal View History

'use strict';
2024-03-28 02:00:41 +00:00
var $TypeError = require('es-errors/type');
var IsAccessorDescriptor = require('./IsAccessorDescriptor');
var IsDataDescriptor = require('./IsDataDescriptor');
2024-03-28 02:00:41 +00:00
var isPropertyDescriptor = require('./IsPropertyDescriptor');
2022-11-10 10:43:16 +00:00
// https://262.ecma-international.org/5.1/#sec-8.10.3
module.exports = function IsGenericDescriptor(Desc) {
if (typeof Desc === 'undefined') {
return false;
}
2024-03-28 02:00:41 +00:00
if (!isPropertyDescriptor(Desc)) {
throw new $TypeError('Assertion failed: `Desc` must be a Property Descriptor');
}
if (!IsAccessorDescriptor(Desc) && !IsDataDescriptor(Desc)) {
return true;
}
return false;
};