mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 19:50:17 +00:00

PR-URL: https://github.com/nodejs/node/pull/35474 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org> Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
24 lines
784 B
JavaScript
24 lines
784 B
JavaScript
const { promisify } = require('util')
|
|
const fs = require('fs')
|
|
const optsArg = opts => {
|
|
if (!opts)
|
|
opts = { mode: 0o777, fs }
|
|
else if (typeof opts === 'object')
|
|
opts = { mode: 0o777, fs, ...opts }
|
|
else if (typeof opts === 'number')
|
|
opts = { mode: opts, fs }
|
|
else if (typeof opts === 'string')
|
|
opts = { mode: parseInt(opts, 8), fs }
|
|
else
|
|
throw new TypeError('invalid options argument')
|
|
|
|
opts.mkdir = opts.mkdir || opts.fs.mkdir || fs.mkdir
|
|
opts.mkdirAsync = promisify(opts.mkdir)
|
|
opts.stat = opts.stat || opts.fs.stat || fs.stat
|
|
opts.statAsync = promisify(opts.stat)
|
|
opts.statSync = opts.statSync || opts.fs.statSync || fs.statSync
|
|
opts.mkdirSync = opts.mkdirSync || opts.fs.mkdirSync || fs.mkdirSync
|
|
return opts
|
|
}
|
|
module.exports = optsArg
|