14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
'use strict'
|
|
|
|
const fs = require('fs')
|
|
const { once } = require('events')
|
|
|
|
async function run (opts) {
|
|
if (!opts.destination) throw new Error('kaboom')
|
|
const stream = fs.createWriteStream(opts.destination)
|
|
await once(stream, 'open')
|
|
return stream
|
|
}
|
|
|
|
module.exports = run
|