Spaces:
Sleeping
Sleeping
| const { Writable } = require('stream') | |
| async function run (opts) { | |
| const stream = new Writable({ | |
| write (chunk, enc, cb) { | |
| process.exit(1) | |
| } | |
| }) | |
| return stream | |
| } | |
| module.exports = run | |
| const { Writable } = require('stream') | |
| async function run (opts) { | |
| const stream = new Writable({ | |
| write (chunk, enc, cb) { | |
| process.exit(1) | |
| } | |
| }) | |
| return stream | |
| } | |
| module.exports = run | |