mirror of
				https://kkgithub.com/actions/setup-node.git
				synced 2025-10-31 10:41:57 +08: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;
 | |
|     }, {});
 | |
| }
 | 
