MCPcopy Index your code
hub / github.com/nodejs/node / getCertdataURL

Function getCertdataURL

tools/dep_updaters/update-root-certs.mjs:13–17  ·  view source on GitHub ↗
(version)

Source from the content-addressed store, hash-verified

11const __filename = fileURLToPath(import.meta.url);
12
13const getCertdataURL = (version) => {
14 const tag = `NSS_${version.replaceAll('.', '_')}_RTM`;
15 const certdataURL = `https://raw.githubusercontent.com/nss-dev/nss/refs/tags/${tag}/lib/ckfw/builtins/certdata.txt`;
16 return certdataURL;
17};
18
19const getFirefoxReleases = async (everything = false) => {
20 const releaseDataURL = `https://nucleus.mozilla.org/rna/all-releases.json${everything ? '?all=true' : ''}`;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…