UNPKG

tiptapify

Version:

Tiptap3 editor with Vuetify3 menu implementation

17 lines (14 loc) 392 B
export default { ucFirst: (string: String, snakeCaseToWords: Boolean = false, kebabCaseToWords: Boolean = false): String|any => { if (!string) { return string } if (snakeCaseToWords) { string = string.replaceAll('_', ' ') } if (kebabCaseToWords) { string = string.replaceAll('-', ' ') } return string[0].toUpperCase() + string.slice(1) } }