$
This commit is contained in:
14
node_modules/@npmcli/fs/lib/write-file.js
generated
vendored
Normal file
14
node_modules/@npmcli/fs/lib/write-file.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
Reference in New Issue
Block a user