Skip to main content
Module

std/node/console.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import { Console } from "./internal/console/constructor.mjs";
export default Object.assign({}, console, { Console });
export { Console };export const { assert, clear, count, countReset, debug, dir, dirxml, error, group, groupCollapsed, groupEnd, info, log, profile, profileEnd, table, time, timeEnd, timeLog, timeStamp, trace, warn,} = console;// deno-lint-ignore no-explicit-anyexport const indentLevel = (console as any)?.indentLevel;