MCPcopy Index your code
hub / github.com/angular/angular / maybeExtractReleaseVersion

Function maybeExtractReleaseVersion

scripts/compare-main-to-patch.js:59–63  ·  view source on GitHub ↗
(commit)

Source from the content-addressed store, hash-verified

57}
58
59function maybeExtractReleaseVersion(commit) {
60 const versionRegex = /release: cut the (.*?) release/;
61 const matches = commit.match(versionRegex);
62 return matches ? matches[1] || matches[2] : null;
63}
64
65// Checks whether commit message matches any patterns in ignore list.
66function shouldIgnoreCommit(commitMessage, ignorePatterns) {

Callers 1

collectCommitsAsMapFunction · 0.85

Calls 1

matchMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…