in src/common/pr-utils/extracting.ts [6:8]
function capitalize([first, ...rest]: string): string { return `${first.toUpperCase()}${rest.join('')}`; }