UNPKG

equal-vue

Version:

Equal is a Vue 3 hackable UI library empowered by tailwindcss

9 lines (8 loc) 255 B
export const getUpperFirstLettersWords = (text = '', wordCount = 1): string => { if (!text) return '' const words = text.split(' ') return words .splice(0, wordCount) .reduce((str, word) => (str += word[0]), '') .toUpperCase() }