mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 19:39:29 +08:00
9 lines
361 B
Text
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);
|
|
};
|