in src/formatters/links.js [1:6]
export function getBugURL(ref) {
// handle old-style Glean bug references (FIXME: do this in etl instead)
return ref.toString().startsWith("http")
? ref
: `https://bugzilla.mozilla.org/show_bug.cgi?id=${ref}`;
}