[typescript] NPE를 방지하며 vscode 에서 타입 추론도 가능하게 하는 함수 (react-query return data, empty object fallback)

By | 11월 11, 2025
export const safeObj = <T extends object>(obj: T | undefined): T => {
    return (obj ?? {}) as T;
}

진짜 개좋네...
고마워 GPT!

Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments