Add capitalize function (#2651)
This commit is contained in:
		
							parent
							
								
									769960f29e
								
							
						
					
					
						commit
						c6ff6939a5
					
				|  | @ -1,3 +1,5 @@ | |||
| import { capitalize } from "../../../prelude/string"; | ||||
| 
 | ||||
| function escape(text: string) { | ||||
| 	return text | ||||
| 		.replace(/>/g, '>') | ||||
|  | @ -89,7 +91,7 @@ const _keywords = [ | |||
| ]; | ||||
| 
 | ||||
| const keywords = _keywords | ||||
| 	.concat(_keywords.map(k => k[0].toUpperCase() + k.substr(1))) | ||||
| 	.concat(_keywords.map(capitalize)) | ||||
| 	.concat(_keywords.map(k => k.toUpperCase())) | ||||
| 	.sort((a, b) => b.length - a.length); | ||||
| 
 | ||||
|  |  | |||
|  | @ -0,0 +1,3 @@ | |||
| export function capitalize(s: string): string { | ||||
| 	return s.charAt(0).toUpperCase() + s.slice(1).toLowerCase(); | ||||
| } | ||||
		Loading…
	
		Reference in New Issue