codeql-action/node_modules/titleize/index.js

8 строки
205 B
JavaScript

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());
}