mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			277 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			277 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2019 Sergey Rubanov. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
esid: sec-promise.any
 | 
						|
description: Promise.any is callable
 | 
						|
features: [Promise.any]
 | 
						|
---*/
 | 
						|
 | 
						|
assert.sameValue(typeof Promise.any, 'function');
 |