mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
75209e12f1
This PR changes Node.js/npm compatibility layer to use polyfills for built-in Node.js embedded in the snapshot (that are coming from "ext/node" extension). As a result loading `std/node`, either from "https://deno.land/std@<latest>/" or from "DENO_NODE_COMPAT_URL" env variable were removed. All code that is imported via "npm:" specifiers now uses code embedded in the snapshot. Several fixes were applied to various modules in "ext/node" to make tests pass. --------- Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com> Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
37 lines
856 B
TypeScript
37 lines
856 B
TypeScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { Console } from "internal:deno_node/polyfills/internal/console/constructor.mjs";
|
|
import { windowOrWorkerGlobalScope } from "internal:runtime/js/98_global_scope.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;
|