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.
19 lines
507 B
19 lines
507 B
const fs = require('./fs.js') |
|
const getOptions = require('./common/get-options.js') |
|
const owner = require('./common/owner.js') |
|
|
|
const writeFile = async (file, data, opts) => { |
|
const options = getOptions(opts, { |
|
copy: ['encoding', 'mode', 'flag', 'signal', 'owner'], |
|
wrap: 'encoding', |
|
}) |
|
const { uid, gid } = await owner.validate(file, options.owner) |
|
|
|
const result = await fs.writeFile(file, data, options) |
|
|
|
await owner.update(file, uid, gid) |
|
|
|
return result |
|
} |
|
|
|
module.exports = writeFile
|
|
|