master
Brad Cornes 2019-01-16 20:15:45 +00:00
parent 3b3c296006
commit b21c42e638
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ export function createTempFile(content: string, options = {}): Promise<string> {
return new Promise((resolve, reject) => {
tmp.file(options, (err, path) => {
if (err) return reject(err)
fs.writeFile(path, content, 'utf8', err => {
fs.writeFile(path, content, { encoding: 'utf8' }, err => {
if (err) return reject(err)
resolve(path)
})