123456789 |
- 'use strict';
- var ValidateAndApplyPropertyDescriptor = require('./ValidateAndApplyPropertyDescriptor');
- module.exports = function IsCompatiblePropertyDescriptor(Extensible, Desc, Current) {
- return ValidateAndApplyPropertyDescriptor(undefined, '', Extensible, Desc, Current);
- };
|