UNPKG

dicom-microscopy-viewer-changed

Version:
18 lines (13 loc) 301 B
/** Capitalize every word in a string: `unicorn cake` → `Unicorn Cake`. @param string - The string to titleize. @example ``` import titleize from 'titleize'; titleize('foo bar'); //=> 'Foo Bar' titleize('foo-bar'); //=> 'Foo-Bar' ``` */ export default function titleize(string: string): string;