# insensitive

> A library to make working with case-insensitive code much easier

Latest version **1.0.1** (published 2018-11-14) · MIT license · 0 weekly downloads

## Install

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

## 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.0.1 |
| Published | 2018-11-14 |
| First published | 2018-11-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Francisco Presencia |
| Maintainers | franciscop |

## Links

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

## Recent versions

- 1.0.1 (latest) — 2018-11-14
- 1.0.0 — 2018-11-14

## README

# insensitive

Make sure anything you are working with becomes lowercase alphanumeric characters:

```js
import insensitive from 'insensitive';

const obj = insensitive();
console.log(obj.hello);  // undefined
obj.heL_Lo = 'world';
console.log(obj.hello);  // 'world'
obj.hello = 'bye';
console.log(obj.hello);  // 'bye'

for (let key in obj) {
  console.log(key);  // 'hello'
}
Object.keys(obj); // ['hello']
```

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