mirror of
https://github.com/felixrieseberg/windows95.git
synced 2026-05-14 02:21:59 +00:00
9 lines
145 B
TypeScript
9 lines
145 B
TypeScript
/**
|
|
* Are we currently running in development mode?
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
export function isDevMode() {
|
|
return !!process.defaultApp;
|
|
}
|