Files
ox_lib/web/src/utils/misc.ts
2022-08-27 15:58:36 +02:00

7 lines
222 B
TypeScript

// Will return whether the current environment is in a regular browser
// and not CEF
export const isEnvBrowser = (): boolean => !(window as any).invokeNative;
// Basic no operation function
export const noop = () => {};