mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 10:39:29 +08:00
9 lines
367 B
Text
9 lines
367 B
Text
'use strict';
|
|
|
|
var ValidateAndApplyPropertyDescriptor = require('./ValidateAndApplyPropertyDescriptor');
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-iscompatiblepropertydescriptor
|
|
|
|
module.exports = function IsCompatiblePropertyDescriptor(Extensible, Desc, Current) {
|
|
return ValidateAndApplyPropertyDescriptor(undefined, undefined, Extensible, Desc, Current);
|
|
};
|