1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-11 16:14:04 +02:00

hydrateObj: use default param (#37483)

This commit is contained in:
XhmikosR
2022-11-12 10:03:16 +02:00
committed by GitHub
parent 0a484e7586
commit 21e036bf13

View File

@@ -300,8 +300,8 @@ const EventHandler = {
}
}
function hydrateObj(obj, meta) {
for (const [key, value] of Object.entries(meta || {})) {
function hydrateObj(obj, meta = {}) {
for (const [key, value] of Object.entries(meta)) {
try {
obj[key] = value
} catch {