Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const systemNetworks = ['host', 'bridge', 'ingress', 'nat', 'none'];
export function isSystemNetwork(networkName: string) {
return systemNetworks.includes(networkName);
}