6 lines
		
	
	
		
			113 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			113 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
function helperStringUpperCase (str) {
 | 
						|
  return str.toUpperCase()
 | 
						|
}
 | 
						|
 | 
						|
module.exports = helperStringUpperCase
 |