D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
ebrokers.online
/
node_modules
/
tailwindcss
/
src
/
util
/
Filename :
defaults.js
back
Copy
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 }