UNPKG

264 BJavaScriptView Raw
1import {createWriteStream} from 'fs'
2import streamToPromise from 'stream-to-promise'
3
4export async function write (data, path) {
5 const stream = createWriteStream(path)
6 const promise = streamToPromise(stream)
7 stream.end(data, 'utf8')
8 return await promise
9}