UNPKG

state-management-utilities

Version:
11 lines (10 loc) 269 B
/* istanbul ignore file */ import React from "react"; import { center } from "../center"; export function useDisableLog({ isDisabled }) { React.useEffect(() => { if (!isDisabled) return; center.enableLog = false; }, [isDisabled]); }