UNPKG

@xrengine/server-core

Version:

Shared components for XREngine server

9 lines (7 loc) 238 B
export function capitalize(words): string { const wordArray = words.split(' ') for (let i = 0; i < wordArray.length; i++) { wordArray[i] = wordArray[i][0].toUpperCase() + wordArray[i].substr(1) } return wordArray.join(' ') }