8 lines
205 B
JavaScript
8 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());
|
||
|
}
|