UNPKG

@dune2/mantine-notifications

Version:

Mantine notifications system

13 lines (11 loc) 295 B
'use client'; function getAutoClose(autoClose, notificationAutoClose) { if (typeof notificationAutoClose === "number") { return notificationAutoClose; } if (notificationAutoClose === false || autoClose === false) { return false; } return autoClose; } export { getAutoClose };