/opt/canhelp/node_modules/@opentelemetry/api/build/src/propagation
NameSizeModeActions
NoopTextMapPropagator.d.ts5610644editdlrm
NoopTextMapPropagator.js6600644editdlrm
NoopTextMapPropagator.js.map10540644editdlrm
TextMapPropagator.d.ts34570644editdlrm
TextMapPropagator.js7850644editdlrm
TextMapPropagator.js.map47500644editdlrm
Edit: /opt/canhelp/node_modules/@opentelemetry/api/build/src/propagation/NoopTextMapPropagator.js (660B)
"use strict"; /* * Copyright The OpenTelemetry Authors * SPDX-License-Identifier: Apache-2.0 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.NoopTextMapPropagator = void 0; /** * No-op implementations of {@link TextMapPropagator}. */ class NoopTextMapPropagator { /** Noop inject function does nothing */ inject(_context, _carrier) { } /** Noop extract function does nothing and returns the input context */ extract(context, _carrier) { return context; } fields() { return []; } } exports.NoopTextMapPropagator = NoopTextMapPropagator; //# sourceMappingURL=NoopTextMapPropagator.js.map