mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 23:16:03 +01:00
6 lines
219 B
TypeScript
6 lines
219 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 = () => {}
|