do not export isConsoleInstance (#2850)

This commit is contained in:
迷渡 2019-09-03 15:10:51 +08:00 committed by Ryan Dahl
parent 91ba3410a3
commit e9908453df
2 changed files with 2 additions and 3 deletions

View file

@ -486,7 +486,7 @@ type PrintFunc = (x: string, isErr?: boolean) => void;
const countMap = new Map<string, number>();
const timerMap = new Map<string, number>();
export const isConsoleInstance = Symbol("isConsoleInstance");
const isConsoleInstance = Symbol("isConsoleInstance");
export class Console {
indentLevel: number;