(level: 'log'|'error'|'info'|'warn', ...args: any)
| 26 | const IS_HMR = typeof module !== 'undefined' && !!(module as any).hot; |
| 27 | |
| 28 | const log = (level: 'log'|'error'|'info'|'warn', ...args: any) => { |
| 29 | if (isDevMode() && typeof console !== 'undefined') { |
| 30 | // eslint-disable-next-line no-console |
| 31 | console[level](...args); |
| 32 | } |
| 33 | }; |
| 34 | |
| 35 | globalThis.ɵAngularfireInstanceCache ||= []; |