deno_node 0.192.0

Node compatibility for Deno
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018-2026 the Deno authors. MIT license.

(function () {
const { core } = __bootstrap;
const { op_inspector_enabled } = core.ops;

function isEnabled() {
  return op_inspector_enabled();
}

return {
  isEnabled,
};
})();