mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
14 lines
339 B
JavaScript
14 lines
339 B
JavaScript
'use client';
|
|
function getAutoClose(autoClose, notificationAutoClose) {
|
|
if (typeof notificationAutoClose === "number") {
|
|
return notificationAutoClose;
|
|
}
|
|
if (notificationAutoClose === false || autoClose === false) {
|
|
return false;
|
|
}
|
|
return autoClose;
|
|
}
|
|
|
|
export { getAutoClose };
|
|
//# sourceMappingURL=get-auto-close.mjs.map
|