UNPKG

dicom-microscopy-viewer-changed

Version:
8 lines (6 loc) 205 B
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()); }