/home/bdqbpbxa/demo-subdomains/ping-proxies.goodface.com.ua/node_modules/titleize/index.js
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());
}