📄 IsPropertyDescriptor.js
/home/palash/git/site/node_modules/es-abstract/2015/IsPropertyDescriptor.js
Language: js • Lines: 11
'use strict';

// TODO, semver-major: delete this

var isPropertyDescriptor = require('../helpers/records/property-descriptor');

// https://262.ecma-international.org/6.0/#sec-property-descriptor-specification-type

module.exports = function IsPropertyDescriptor(Desc) {
	return isPropertyDescriptor(Desc);
};