Files
actions-ansi-to-html/node_modules/env-ci/lib/utils.js
T
2025-11-11 06:53:11 -05:00

10 lines
232 B
JavaScript

function prNumber(pr) {
return (/\d+(?!.*\d+)/.exec(pr) || [])[0];
}
function parseBranch(branch) {
return branch ? /^(?:refs\/heads\/)?(?<branch>.+)$/i.exec(branch)[1] : undefined;
}
module.exports = {prNumber, parseBranch};