1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-19 07:24:16 +00:00

11 lines
133 B
JavaScript

import { Duplex } from "node:stream"
export default (bf) => {
let tmp = new Duplex()
tmp.push(bf)
tmp.push(null)
return tmp
}