Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-07-13 09:09:17 +00:00
parent 4fad06f438
commit 40a500c743
4168 changed files with 298222 additions and 374905 deletions

7
node_modules/titleize/index.js generated vendored Normal file
View file

@ -0,0 +1,7 @@
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());
}