UNPKG

react-easier

Version:

Useful React hooks that minimize the complexity of state handling, contexts and fetching.

7 lines 234 B
export function useDebug(debug = true, includeGet = false) { try { if (import.meta.env.MODE === 'production') { return; } } catch (e) { } window.___debugStates___ = debug; window.___debugStatesIncludeGet___ = includeGet; }