UNPKG

369 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.NoopGraphInspector = void 0;
4const graph_inspector_1 = require("./graph-inspector");
5// eslint-disable-next-line @typescript-eslint/no-empty-function
6const noop = () => { };
7exports.NoopGraphInspector = new Proxy(graph_inspector_1.GraphInspector.prototype, {
8 get: () => noop,
9});