MCPcopy Index your code
hub / github.com/getsentry/sentry-javascript / isSectionHeading

Function isSectionHeading

scripts/generate-changelog.ts:280–283  ·  view source on GitHub ↗
(line: string)

Source from the content-addressed store, hash-verified

278}
279
280function isSectionHeading(line: string): boolean {
281 const trimmed = line.trim();
282 return trimmed === '### Important Changes' || trimmed === '### Other Changes';
283}
284
285function isInternalCommit(line: string): boolean {
286 return /^- (chore|ref|test|meta)/.test(line.trim());

Callers 1

parseChangelogFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected