# is-empty-object

> Check if an object is empty.

Latest version **1.1.1** (published 2015-09-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-empty-object
pnpm add is-empty-object
yarn add is-empty-object
bun add is-empty-object
```

## Health

**Score 23/100 (F)** — status: abandoned.

Positive: has types package; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2015-09-21 |
| First published | 2015-03-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/is-empty-object) |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 11 |
| Author | Ellen Gummesson |
| Maintainers | gummesson |
| Keywords | object, empty |

## Links

- npm: https://www.npmjs.com/package/is-empty-object
- Repository: https://github.com/gummesson/is-empty-object
- Issues: https://github.com/gummesson/is-empty-object/issues
- npm.io page: https://npm.io/package/is-empty-object

## Recent versions

- 1.1.1 (latest) — 2015-09-21
- 1.1.0 — 2015-03-23
- 1.0.0 — 2015-03-12

## README

# is-empty-object

[![NPM version][npm-img]][npm-url]
[![License][license-img]][license-url]
[![Build status][travis-img]][travis-url]

Check if an object is empty.

## Installation

```
npm install is-empty-object
```

## Usage

``` javascript
var isEmptyObject = require('is-empty-object')

isEmptyObject({})         // => true
isEmptyObject({ one: 1 }) // => false
isEmptyObject([])         // => false
```

[npm-img]: https://img.shields.io/npm/v/is-empty-object.svg?style=flat-square
[npm-url]: https://npmjs.org/package/is-empty-object
[license-img]: http://img.shields.io/npm/l/is-empty-object.svg?style=flat-square
[license-url]: LICENSE
[travis-img]: https://img.shields.io/travis/gummesson/is-empty-object.svg?style=flat-square
[travis-url]: https://travis-ci.org/gummesson/is-empty-object

---
_Source: https://npm.io/package/is-empty-object · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
