# object_matching

> return whether it matches in objects

Latest version **0.0.2** (published 2019-12-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install object_matching
pnpm add object_matching
yarn add object_matching
bun add object_matching
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2019-12-02 |
| First published | 2019-11-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | katsuomi |
| Maintainers | katsuomi |
| Keywords | object_matching, object |

## Links

- npm: https://www.npmjs.com/package/object_matching
- Repository: https://github.com/katsuomi/object_matching
- Homepage: https://github.com/katsuomi/object_matching#readme
- Issues: https://github.com/katsuomi/object_matching/issues
- npm.io page: https://npm.io/package/object_matching

## Recent versions

- 0.0.2 (latest) — 2019-12-02
- 0.0.1 — 2019-11-12

## README

[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
[![npm version](https://badge.fury.io/js/object_matching.svg)](https://badge.fury.io/js/object_matching)
[![Build Status](https://travis-ci.org/katsuomi/object_matching.svg?branch=master)](https://travis-ci.org/katsuomi/object_matching)

# object_matching

## 💬 About

You can easily compare two objects in JavaScript using this npm package.

## 💁‍♂️ example

```bash
var object_match = require("object_matching");
const a = {foo: "poteto",bar: "apple" }
const b = {bar: "apple",foo: "poteto" }
const c = {bar: "poteto",foo: "apple" }
console.log(object_match(a,b)) //true
console.log(object_match(b,c)) //false
```

## 🔰 install
```bash
$ npm install object_matching
```

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