time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

index.js (205B)


      1 export default function titleize(string) {
      2 	if (typeof string !== 'string') {
      3 		throw new TypeError('Expected a string');
      4 	}
      5 
      6 	return string.toLowerCase().replace(/(?:^|\s|-)\S/g, x => x.toUpperCase());
      7 }