Tooltip texts for key actions
This commit is contained in:
committed by
József Farkas
parent
06a9c35655
commit
1c50d7fe83
10
src/util/index.ts
Normal file
10
src/util/index.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
// Source: http://stackoverflow.com/questions/13720256/javascript-regex-camelcase-to-sentence
|
||||
export function camelCaseToSentence(camelCasedText: string): string {
|
||||
return camelCasedText.replace(/^[a-z]|[A-Z]/g, function (v, i) {
|
||||
return i === 0 ? v.toUpperCase() : ' ' + v.toLowerCase();
|
||||
});
|
||||
}
|
||||
|
||||
export function capitalizeFirstLetter(text: string): string {
|
||||
return text.charAt(0).toUpperCase() + text.slice(1);
|
||||
}
|
||||
Reference in New Issue
Block a user