mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 23:40:57 +00:00
16 lines
366 B
JavaScript
16 lines
366 B
JavaScript
'use client';
|
|
'use strict';
|
|
|
|
function getAutoClose(autoClose, notificationAutoClose) {
|
|
if (typeof notificationAutoClose === "number") {
|
|
return notificationAutoClose;
|
|
}
|
|
if (notificationAutoClose === false || autoClose === false) {
|
|
return false;
|
|
}
|
|
return autoClose;
|
|
}
|
|
|
|
exports.getAutoClose = getAutoClose;
|
|
//# sourceMappingURL=get-auto-close.cjs.map
|