Skip to content

Commit

Permalink
use var name
Browse files Browse the repository at this point in the history
  • Loading branch information
olafbuitelaar committed Aug 6, 2023
1 parent 8edcbb5 commit 13bfb80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class Logger<LogObj> extends BaseLogger<LogObj> {
// 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);
}

/**
Expand Down

0 comments on commit 13bfb80

Please sign in to comment.