UNPKG

when-exit

Version:

Execute a function right before the process, or the browser's tab, is about to exit.

8 lines (7 loc) 206 B
/* IMPORT */ import process from 'node:process'; /* MAIN */ const IS_LINUX = (process.platform === 'linux'); const IS_WINDOWS = (process.platform === 'win32'); /* EXPORT */ export { IS_LINUX, IS_WINDOWS };