persona-community-5/.pnpm-store/v3/files/d8/84a4501ccaa4f1e5d4206ab3214bb2038fcf6e59c163e71d7c1fba84c9098ae8f108c9a0e1794ed4e34dd38adaeb49a1318a438b51d415d35a0b3a4b2a441f
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
338 B
Plaintext

'use strict'
// parse out just the options we care about
const looseOption = Object.freeze({ loose: true })
const emptyOpts = Object.freeze({ })
const parseOptions = options => {
if (!options) {
return emptyOpts
}
if (typeof options !== 'object') {
return looseOption
}
return options
}
module.exports = parseOptions