[typescript] NPE를 방지하며 vscode 에서 타입 추론도 가능하게 하는 함수 (react-query return data, empty object fallback) By itpsolver | 11월 11, 2025 0 Comment export const safeObj = <T extends object>(obj: T | undefined): T => { return (obj ?? {}) as T; } 진짜 개좋네... 고마워 GPT!