# @f/equal-obj

> Shallow object equality check

Latest version **1.2.1** (published 2015-12-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install @f/equal-obj
pnpm add @f/equal-obj
yarn add @f/equal-obj
bun add @f/equal-obj
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2015-12-16 |
| First published | 2015-12-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | f |

## Links

- npm: https://www.npmjs.com/package/@f/equal-obj
- Repository: https://github.com/micro-js/object-equal
- Homepage: https://github.com/micro-js/object-equal#readme
- Issues: https://github.com/micro-js/object-equal/issues
- npm.io page: https://npm.io/package/@f/equal-obj

## Recent versions

- 1.2.1 (latest) — 2015-12-16
- 1.2.0 — 2015-12-16
- 1.1.2 — 2015-12-16

## README

# equal-obj

[![Build status][travis-image]][travis-url]
[![Git tag][git-image]][git-url]
[![NPM version][npm-image]][npm-url]
[![Code style][standard-image]][standard-url]

Shallow object equality check

## Installation

    $ npm install @f/equal-obj

## Usage

```js
var equal = require('@f/equal-obj')

equal({a: 1}, {a: 1}) // => true
equal({a: 1}, {a: 2}) // => false

```

## API

### equalObj(obj1, obj2)

- `obj1` - First object.
- `obj2` - Second object.

**Returns:** Boolean, indicating whether `obj1` and `obj2` are equal.

## License

MIT

[travis-image]: https://img.shields.io/travis/micro-js/equal-obj.svg?style=flat-square
[travis-url]: https://travis-ci.org/micro-js/equal-obj
[git-image]: https://img.shields.io/github/tag/micro-js/equal-obj.svg
[git-url]: https://github.com/micro-js/equal-obj
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat
[standard-url]: https://github.com/feross/standard
[npm-image]: https://img.shields.io/npm/v/@f/equal-obj.svg?style=flat-square
[npm-url]: https://npmjs.org/package/@f/equal-obj

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