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