You've already forked setup-node
							
							
				mirror of
				https://github.com/actions/setup-node.git
				synced 2025-10-31 23:26:22 +07:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			227 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			227 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export function lowercaseKeys(object) {
 | |
|     if (!object) {
 | |
|         return {};
 | |
|     }
 | |
|     return Object.keys(object).reduce((newObj, key) => {
 | |
|         newObj[key.toLowerCase()] = object[key];
 | |
|         return newObj;
 | |
|     }, {});
 | |
| }
 | 
