UNPKG

sd-is

Version:

Tiny JavaScript type check utility functions with smart developer-friendly feedback.

4 lines (3 loc) 147 B
export default function isEmptyObject(obj) { return obj && typeof obj === 'object' && !Array.isArray(obj) && Object.keys(obj).length === 0; }