- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
27 lines
627 B
JavaScript
27 lines
627 B
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var IsAccessorDescriptor = require('./IsAccessorDescriptor');
|
|
var IsDataDescriptor = require('./IsDataDescriptor');
|
|
|
|
var isPropertyDescriptor = require('./IsPropertyDescriptor');
|
|
|
|
// https://262.ecma-international.org/5.1/#sec-8.10.3
|
|
|
|
module.exports = function IsGenericDescriptor(Desc) {
|
|
if (typeof Desc === 'undefined') {
|
|
return false;
|
|
}
|
|
|
|
if (!isPropertyDescriptor(Desc)) {
|
|
throw new $TypeError('Assertion failed: `Desc` must be a Property Descriptor');
|
|
}
|
|
|
|
if (!IsAccessorDescriptor(Desc) && !IsDataDescriptor(Desc)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
};
|