| 1234567891011 | 'use strict';// TODO, semver-major: delete thisvar isPropertyDescriptor = require('../helpers/records/property-descriptor');// https://262.ecma-international.org/6.0/#sec-property-descriptor-specification-typemodule.exports = function IsPropertyDescriptor(Desc) {	return isPropertyDescriptor(Desc);};
 |