summaryrefslogtreecommitdiff
path: root/cli/js/web/streams/transform_stream.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-07-11 12:38:15 +1000
committerGitHub <noreply@github.com>2020-07-10 22:38:15 -0400
commit40d081d3d9f64bcd2524da86fb78808ac1d7b888 (patch)
tree2232fda10c06d80d749f975b691974c506caa63d /cli/js/web/streams/transform_stream.ts
parentd01eb6d9c506eef765fde8e40f9b90619b2ec83c (diff)
feat: add performance user timing APIs (#6421)
Diffstat (limited to 'cli/js/web/streams/transform_stream.ts')
-rw-r--r--cli/js/web/streams/transform_stream.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/web/streams/transform_stream.ts b/cli/js/web/streams/transform_stream.ts
index 548a20b38..1c63a553b 100644
--- a/cli/js/web/streams/transform_stream.ts
+++ b/cli/js/web/streams/transform_stream.ts
@@ -7,7 +7,6 @@ import {
invokeOrNoop,
isTransformStream,
makeSizeAlgorithmFromSizeFunction,
- setFunctionName,
setUpTransformStreamDefaultControllerFromTransformer,
validateAndNormalizeHighWaterMark,
} from "./internals.ts";
@@ -16,6 +15,7 @@ import * as sym from "./symbols.ts";
import type { TransformStreamDefaultControllerImpl } from "./transform_stream_default_controller.ts";
import type { WritableStreamImpl } from "./writable_stream.ts";
import { customInspect, inspect } from "../console.ts";
+import { setFunctionName } from "../util.ts";
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export class TransformStreamImpl<I = any, O = any>