@mantine/notifications
Version:
Mantine notifications system
11 lines (10 loc) • 407 B
JavaScript
"use client";
//#region packages/@mantine/notifications/src/get-auto-close/get-auto-close.ts
function getAutoClose(autoClose, notificationAutoClose) {
if (typeof notificationAutoClose === "number") return notificationAutoClose;
if (notificationAutoClose === false || autoClose === false) return false;
return autoClose;
}
//#endregion
export { getAutoClose };
//# sourceMappingURL=get-auto-close.mjs.map