mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 11:44:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			422 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			422 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (C) 2018 Kevin Gibbons. All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| description: Object.fromEntries.name is "fromEntries".
 | |
| esid: sec-object.fromentries
 | |
| includes: [propertyHelper.js]
 | |
| features: [Object.fromEntries]
 | |
| ---*/
 | |
| 
 | |
| verifyProperty(Object.fromEntries, "name", {
 | |
|   value: "fromEntries",
 | |
|   enumerable: false,
 | |
|   writable: false,
 | |
|   configurable: true
 | |
| });
 |