webhook-action/node_modules/es-abstract/2017/IsPropertyDescriptor.js

12 lines
311 B
JavaScript
Raw Normal View History

'use strict';
2022-11-10 10:43:16 +00:00
// TODO, semver-major: delete this
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/6.0/#sec-property-descriptor-specification-type
module.exports = function IsPropertyDescriptor(Desc) {
2024-03-28 02:00:41 +00:00
return isPropertyDescriptor(Desc);
};