mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-25 02:48:23 +01:00
Rename files
This commit is contained in:
17
ts/util/prependStream.node.ts
Normal file
17
ts/util/prependStream.node.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright 2024 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { Transform } from 'node:stream';
|
||||
import type { Duplex } from 'node:stream';
|
||||
|
||||
export function prependStream(data: Uint8Array): Duplex {
|
||||
return new Transform({
|
||||
construct(callback) {
|
||||
this.push(data);
|
||||
callback();
|
||||
},
|
||||
transform(chunk, _encoding, callback) {
|
||||
callback(null, chunk);
|
||||
},
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user