IsPropertyDescriptor.js 311 B

1234567891011
  1. 'use strict';
  2. // TODO, semver-major: delete this
  3. var isPropertyDescriptor = require('../helpers/records/property-descriptor');
  4. // https://262.ecma-international.org/6.0/#sec-property-descriptor-specification-type
  5. module.exports = function IsPropertyDescriptor(Desc) {
  6. return isPropertyDescriptor(Desc);
  7. };