File size: 164 Bytes
d9494a5
 
 
 
 
1
2
3
4
5
6
import { isObject } from '@sniptt/guards';

export const isEmptyObject = (obj: any): obj is object => {
  return isObject(obj) && Object.keys(obj).length === 0;
};