source: frontend/node_modules/es-abstract/2015/IsCompatiblePropertyDescriptor.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 390 bytes
RevLine 
[9af201e]1'use strict';
2
3var ValidateAndApplyPropertyDescriptor = require('./ValidateAndApplyPropertyDescriptor');
4
5// https://262.ecma-international.org/6.0/#sec-iscompatiblepropertydescriptor
6
7module.exports = function IsCompatiblePropertyDescriptor(Extensible, Desc, Current) {
8 return ValidateAndApplyPropertyDescriptor(
9 void undefined,
10 void undefined,
11 Extensible,
12 Desc,
13 Current
14 );
15};
Note: See TracBrowser for help on using the repository browser.