()
| 556 | } |
| 557 | |
| 558 | function setupNetworkInspection() { |
| 559 | if (internalBinding('config').hasInspector && getOptionValue('--experimental-network-inspection')) { |
| 560 | const { |
| 561 | enable, |
| 562 | disable, |
| 563 | } = require('internal/inspector_network_tracking'); |
| 564 | internalBinding('inspector').setupNetworkTracking(enable, disable); |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | // In general deprecations are initialized wherever the APIs are implemented, |
| 569 | // this is used to deprecate APIs implemented in C++ where the deprecation |
no test coverage detected
searching dependent graphs…