kjelsrud.dev/node_modules/titleize/index.js
2023-07-19 21:31:30 +02:00

7 lines
205 B
JavaScript

export default function titleize(string) {
if (typeof string !== 'string') {
throw new TypeError('Expected a string');
}
return string.toLowerCase().replace(/(?:^|\s|-)\S/g, x => x.toUpperCase());
}