persona-community-5/.pnpm-store/v3/files/40/6fc4b48076bc38f451acd6a5788f259cd918aacf1aeebba804a0daf3a055a287e3d57e1807a4fe8d0a5d6532afedb16f376eb08c1cf29b6aa7cc972713a75c
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
361 B
Plaintext

export function defaults(target, ...sources) {
for (let source of sources) {
for (let k in source) {
if (!target?.hasOwnProperty?.(k)) {
target[k] = source[k]
}
}
for (let k of Object.getOwnPropertySymbols(source)) {
if (!target?.hasOwnProperty?.(k)) {
target[k] = source[k]
}
}
}
return target
}