You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
395 B
15 lines
395 B
2 years ago
|
const fs = require('./fs.js')
|
||
|
const getOptions = require('./common/get-options.js')
|
||
|
const withOwner = require('./with-owner.js')
|
||
|
|
||
|
const writeFile = async (file, data, opts) => {
|
||
|
const options = getOptions(opts, {
|
||
|
copy: ['encoding', 'mode', 'flag', 'signal'],
|
||
|
wrap: 'encoding',
|
||
|
})
|
||
|
|
||
|
return withOwner(file, () => fs.writeFile(file, data, options), opts)
|
||
|
}
|
||
|
|
||
|
module.exports = writeFile
|