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

6 lines
219 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
export const isEnvBrowser = (): boolean => !(window as any).invokeNative
// Basic no operation function
export const noop = () => {}