Urara-Blog/node_modules/.pnpm-store/v3/files/a5/1d8603963949e0ebd0365fca6de490a95ae1abaab664808dafc94ff4f44b10bb541d8e9e1cfa7c6e4eb1828a85569f4b967f8edf6faf2058eed48550460cf4
2022-08-14 01:14:53 +08:00

9 lines
361 B
Text

'use strict';
var ValidateAndApplyPropertyDescriptor = require('./ValidateAndApplyPropertyDescriptor');
// https://262.ecma-international.org/13.0/#sec-iscompatiblepropertydescriptor
module.exports = function IsCompatiblePropertyDescriptor(Extensible, Desc, Current) {
return ValidateAndApplyPropertyDescriptor(undefined, '', Extensible, Desc, Current);
};