UNPKG

wickr-bedrock-bot

Version:

AWS Wickr's own Bedrock Bot

13 lines (9 loc) 238 B
'use strict' const fs = require('node:fs') const { once } = require('node:events') async function run (opts) { const stream = fs.createWriteStream(opts.destination) await once(stream, 'open') return stream } module.exports = run