mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
6 lines
217 B
TypeScript
6 lines
217 B
TypeScript
export const isClient = typeof window === 'object';
|
|
|
|
export const on = (obj: any, ...args: any[]) => obj.addEventListener(...args);
|
|
|
|
export const off = (obj: any, ...args: any[]) => obj.removeEventListener(...args);
|