mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-04 21:53:42 -06:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
// @ts-check
|
|
const { PassThrough } = require("stream");
|
|
|
|
/**
|
|
* @returns {NodeJS.ReadWriteStream}
|
|
*/
|
|
function pass() {
|
|
return new PassThrough({ objectMode: true });
|
|
}
|
|
|
|
module.exports = pass; |