Kargi-Sitesi/node_modules/titleize/index.js

8 lines
205 B
JavaScript
Raw Normal View History

2024-11-04 02:30:09 +00:00
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());
}