diff options
Diffstat (limited to 'js/console.ts')
-rw-r--r-- | js/console.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/console.ts b/js/console.ts index c49a7621d..e08fc445e 100644 --- a/js/console.ts +++ b/js/console.ts @@ -13,7 +13,7 @@ function getClassInstanceName(instance: any): string { } // tslint:disable-next-line:no-any -export function stringify(ctx: ConsoleContext, value: any): string { +function stringify(ctx: ConsoleContext, value: any): string { switch (typeof value) { case "string": return value; @@ -95,7 +95,7 @@ function stringifyWithQuotes(ctx: ConsoleContext, value: any): string { } // tslint:disable-next-line:no-any -function stringifyArgs(args: any[]): string { +export function stringifyArgs(args: any[]): string { const out: string[] = []; for (const a of args) { if (typeof a === "string") { |