@mantine/notifications
Version:
Mantine notifications system
14 lines (12 loc) • 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