(methodName: string, ...args: Array<mixed>)
| 50 | getDefaultComponentFilters(); |
| 51 | |
| 52 | function debug(methodName: string, ...args: Array<mixed>) { |
| 53 | if (__DEBUG__) { |
| 54 | console.log( |
| 55 | `%c[core/backend] %c${methodName}`, |
| 56 | 'color: teal; font-weight: bold;', |
| 57 | 'font-weight: bold;', |
| 58 | ...args, |
| 59 | ); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | export function initialize( |
| 64 | maybeSettingsOrSettingsPromise?: |
no outgoing calls
no test coverage detected