mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-26 19:54:46 +01:00
9 lines
361 B
JavaScript
9 lines
361 B
JavaScript
'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);
|
|
};
|