# node-objs

> deal with js object

Latest version **0.0.4** (published 2017-03-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install node-objs
pnpm add node-objs
yarn add node-objs
bun add node-objs
```

## 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.4 |
| Published | 2017-03-30 |
| First published | 2017-03-29 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Kinvil |
| Maintainers | kinvil_hsiao |
| Keywords | javascript, object |

## Links

- npm: https://www.npmjs.com/package/node-objs
- Repository: https://github.com/kinvil/node-objs
- Homepage: https://github.com/kinvil/node-objs#readme
- Issues: https://github.com/kinvil/node-objs/issues
- npm.io page: https://npm.io/package/node-objs

## Recent versions

- 0.0.4 (latest) — 2017-03-30
- 0.0.2 — 2017-03-29
- 0.0.1 — 2017-03-29

## README

# node-objs
A light weight module to deal with js object.

[![Build Status](https://travis-ci.org/kinvil/node-objs.svg?branch=master)](https://travis-ci.org/kinvil/node-objs)
[![Coverage Status](https://coveralls.io/repos/github/kinvil/node-objs/badge.svg?branch=master)](https://coveralls.io/github/kinvil/node-objs?branch=master)


## install
```
npm install node-objs --save
```

## example

```
import { clone, isEqual } from 'node-objs'

const obj = { foo: 'bar' }
const newObj = clone(obj)
console.log(newObj) // { foo: 'bar' }
obj === newObj // false
isEqual(obj, newObj) // true

obj.foo = 'text' // { foo: 'text' }
console.log(newObj) // { foo: 'bar' }
isEqual(obj, newObj) // false
```

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