diff --git a/src/index.ts b/src/index.ts index faa0ab1..659a511 100644 --- a/src/index.ts +++ b/src/index.ts @@ -17,7 +17,7 @@ export class Logger extends BaseLogger { // style only for blink browsers settings.stylePrettyLogs = settings.stylePrettyLogs && isBrowser && !isBrowserBlinkEngine ? false : settings.stylePrettyLogs; - super(isBrowser && typeof('process') === 'undefined' ? BrowserRuntime : NodeRuntime, settings, logObj, isSafari ? 4 : 5); + super(isBrowser && typeof(process) === 'undefined' ? BrowserRuntime : NodeRuntime, settings, logObj, isSafari ? 4 : 5); } /**