Show More
Commit Description:
submission report
Commit Description:
submission report
References:
File last commit:
Show/Diff file:
Action:
node_modules/es-abstract/2017/IsPropertyDescriptor.js
| 17 lines
| 523 B
| application/javascript
| JavascriptLexer
|
r789 | 'use strict'; | |||
var isPropertyDescriptor = require('../helpers/isPropertyDescriptor'); | ||||
var Type = require('./Type'); | ||||
var IsDataDescriptor = require('./IsDataDescriptor'); | ||||
var IsAccessorDescriptor = require('./IsAccessorDescriptor'); | ||||
// https://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type | ||||
module.exports = function IsPropertyDescriptor(Desc) { | ||||
return isPropertyDescriptor({ | ||||
IsDataDescriptor: IsDataDescriptor, | ||||
IsAccessorDescriptor: IsAccessorDescriptor, | ||||
Type: Type | ||||
}, Desc); | ||||
}; | ||||