# Plain Object Is Empty

Extremely fast function that checks if a plain object is empty.

## Install

```sh
npm install plain-object-is-empty
```

## Usage

```ts
import isEmpty from 'plain-object-is-empty';

// Let's check if an object is empty

isEmpty ({}); // => true
isEmpty ({ foo: true }); // => false
```

## License

MIT © Fabio Spampinato
