Files
emaui/node_modules/@mantine/notifications/esm/get-auto-close/get-auto-close.mjs
2026-05-29 15:23:46 +03:00

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