deno.land / std@0.91.0 / node / _stream / passthrough.ts

passthrough.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Node.js contributors. All rights reserved. MIT License.import Transform from "./transform.ts";import type { TransformOptions } from "./transform.ts";import type { Encodings } from "../_utils.ts";
export default class PassThrough extends Transform { constructor(options?: TransformOptions) { super(options); }
_transform( // deno-lint-ignore no-explicit-any chunk: any, _encoding: Encodings, // deno-lint-ignore no-explicit-any cb: (error?: Error | null, data?: any) => void, ) { cb(null, chunk); }}
std

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉