mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 10:54:13 +00:00

PR-URL: https://github.com/nodejs/node/pull/44119 Reviewed-By: Ruy Adorno <ruyadorno@google.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
20 lines
435 B
JavaScript
20 lines
435 B
JavaScript
const fs = require('./fs.js')
|
|
const getOptions = require('./common/get-options.js')
|
|
const withOwner = require('./with-owner.js')
|
|
|
|
// extends mkdir with the ability to specify an owner of the new dir
|
|
const mkdir = async (path, opts) => {
|
|
const options = getOptions(opts, {
|
|
copy: ['mode', 'recursive'],
|
|
wrap: 'mode',
|
|
})
|
|
|
|
return withOwner(
|
|
path,
|
|
() => fs.mkdir(path, options),
|
|
opts
|
|
)
|
|
}
|
|
|
|
module.exports = mkdir
|