@reservoir0x/relay-kit-ui
Version:
Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.
12 lines • 364 B
JavaScript
/**
* Convert a word to title case
* @param word - The word to convert to title case
* @returns The input word in title case format
*/
function titleCase(word) {
return word.replace(/\w\S*/g, function (txt) {
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
});
}
export default titleCase;
//# sourceMappingURL=titleCase.js.map