Files
ox_lib/web/src/utils/misc.ts

7 lines
222 B
TypeScript
Raw Normal View History

2022-03-13 22:30:57 +01:00
// Will return whether the current environment is in a regular browser
// and not CEF
2022-08-27 15:58:36 +02:00
export const isEnvBrowser = (): boolean => !(window as any).invokeNative;
2022-03-13 22:30:57 +01:00
// Basic no operation function
2022-08-27 15:58:36 +02:00
export const noop = () => {};