@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
16 lines (14 loc) • 376 B
JavaScript
/**
* Turn first letter in the string to capital
* @example "text" will become "Text"
* @param {string} string
* @returns {string}
*/
export function string_capitalize(string) {
const length = string.length;
if (length === 0) {
return string;
} else {
return string.charAt(0).toLocaleUpperCase() + string.substring(1);
}
}