mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 03:34:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (C) 2024 Jordan Harband. All rights reserved.
 | |
| // See LICENSE for details.
 | |
| 
 | |
| /*---
 | |
| author: Jordan Harband
 | |
| description: Promise.try property descriptor
 | |
| features: [promise-try]
 | |
| includes: [propertyHelper.js]
 | |
| ---*/
 | |
| 
 | |
| verifyProperty(Promise, 'try', {
 | |
|   value: Promise.try,
 | |
|   writable: true,
 | |
|   enumerable: false,
 | |
|   configurable: true
 | |
| })
 |