@razorpay/blade
Version:
The Design System that powers Razorpay
12 lines (10 loc) • 341 B
JavaScript
/**
* @deprecated This utility will be deprecated in subsequent version.
*/
var toTitleCase = function toTitleCase(inputString) {
return inputString.toLowerCase().split(' ').map(function (word) {
return word.charAt(0).toUpperCase() + word.slice(1);
}).join(' ');
};
export { toTitleCase };
//# sourceMappingURL=toTitleCase.js.map