diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-07-11 12:38:15 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 22:38:15 -0400 |
commit | 40d081d3d9f64bcd2524da86fb78808ac1d7b888 (patch) | |
tree | 2232fda10c06d80d749f975b691974c506caa63d /cli/js/web/streams/transform_stream_default_controller.ts | |
parent | d01eb6d9c506eef765fde8e40f9b90619b2ec83c (diff) |
feat: add performance user timing APIs (#6421)
Diffstat (limited to 'cli/js/web/streams/transform_stream_default_controller.ts')
-rw-r--r-- | cli/js/web/streams/transform_stream_default_controller.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/web/streams/transform_stream_default_controller.ts b/cli/js/web/streams/transform_stream_default_controller.ts index 78beaf879..22087fb0b 100644 --- a/cli/js/web/streams/transform_stream_default_controller.ts +++ b/cli/js/web/streams/transform_stream_default_controller.ts @@ -4,7 +4,6 @@ import { FlushAlgorithm, isTransformStreamDefaultController, readableStreamDefaultControllerGetDesiredSize, - setFunctionName, TransformAlgorithm, transformStreamDefaultControllerEnqueue, transformStreamDefaultControllerError, @@ -14,6 +13,7 @@ import type { ReadableStreamDefaultControllerImpl } from "./readable_stream_defa import * as sym from "./symbols.ts"; import type { TransformStreamImpl } from "./transform_stream.ts"; import { customInspect } from "../console.ts"; +import { setFunctionName } from "../util.ts"; // eslint-disable-next-line @typescript-eslint/no-explicit-any export class TransformStreamDefaultControllerImpl<I = any, O = any> |