You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					24 lines
				
				465 B
			
		
		
			
		
	
	
					24 lines
				
				465 B
			| 
								 
											4 years ago
										 
									 | 
							
								'use strict';
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								var has = require('has');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								var assertRecord = require('../helpers/assertRecord');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								var Type = require('./Type');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// https://ecma-international.org/ecma-262/6.0/#sec-isaccessordescriptor
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = function IsAccessorDescriptor(Desc) {
							 | 
						||
| 
								 | 
							
									if (typeof Desc === 'undefined') {
							 | 
						||
| 
								 | 
							
										return false;
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									assertRecord(Type, 'Property Descriptor', 'Desc', Desc);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									if (!has(Desc, '[[Get]]') && !has(Desc, '[[Set]]')) {
							 | 
						||
| 
								 | 
							
										return false;
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									return true;
							 | 
						||
| 
								 | 
							
								};
							 |