mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
40 lines
952 B
TypeScript
40 lines
952 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
import { Console } from "ext:deno_node/internal/console/constructor.mjs";
|
|
import { windowOrWorkerGlobalScope } from "ext:runtime/98_global_scope_shared.js";
|
|
// Don't rely on global `console` because during bootstrapping, it is pointing
|
|
// to native `console` object provided by V8.
|
|
const console = windowOrWorkerGlobalScope.console.value;
|
|
|
|
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-any
|
|
export const indentLevel = (console as any)?.indentLevel;
|