@mantine/notifications
Version:
Mantine notifications system
16 lines (13 loc) • 366 B
JavaScript
'use client';
;
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