# oh-no-js

Latest version **0.0.1-alpha.4** (published 2023-02-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install oh-no-js
pnpm add oh-no-js
yarn add oh-no-js
bun add oh-no-js
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1-alpha.4 |
| Published | 2023-02-24 |
| First published | 2023-02-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dmitrii Pavlov |
| Maintainers | dmrompav |
| Keywords | oh-no-js, oh no js |

## Links

- npm: https://www.npmjs.com/package/oh-no-js
- Repository: https://github.com/dmrompav/oh-no-js
- Homepage: https://dmrompav.github.io/oh-no-js/
- Issues: https://github.com/dmrompav/oh-no-js/issues
- npm.io page: https://npm.io/package/oh-no-js

## Recent versions

- 0.0.1-alpha.4 (latest) — 2023-02-24
- 0.0.1-alpha.3 — 2023-02-23
- 0.0.1-alpha.2 — 2023-02-23
- 0.0.1-alpha.1 — 2023-02-23
- 0.0.0 — 2023-02-23

## README

<img src="./oh-no-js.svg" />

## About
A functions' library that makes JS syntax easier.

## Install
```shell
npm install oh-no-js
#or
yarn add oh-no-js
```

## Dev/Test
```shell
yarn run test
#or
npm run test
```

## Getting started
Import functions you need:
```javascript
import { objEqual, nuPi } from 'oh-no-js';
```

Use them. For more information open [documentation](https://dmrompav.github.io/oh-no-js/).
```javascript
const obj1 = { name: { first: 'Jesse', second: 'Pinkman' } };
const obj2 = { name: { first: 'Jesse', second: 'Pinkman' } };

const areEqual = objEqual(obj1, obj2); // expected true
```

```javascript
const obj = {};

nuPi(obj, 'prop1.prop2').prop3 = 'Hello!';

// Expected:
// obj = { prop1: { prop2: { prop3: 'Hello!' } } };
```

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