# underscore.haz

> _.haz() is like _.has() but this underscore and/or lodash mixin lets you do deep object key existence checking with a dot denoted string, for example 'a.b.c'

Latest version **1.0.1** (published 2014-12-04) · ISC license · 0 weekly downloads

## Install

```sh
npm install underscore.haz
pnpm add underscore.haz
yarn add underscore.haz
bun add underscore.haz
```

## 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 | 2014-12-04 |
| First published | 2014-12-03 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 14 |
| Author | Buster Collings |
| Maintainers | buster |
| Keywords | underscore, has, haz, mixin |

## Links

- npm: https://www.npmjs.com/package/underscore.haz
- Repository: https://github.com/busterc/underscore.haz
- Issues: https://github.com/busterc/underscore.haz/issues
- npm.io page: https://npm.io/package/underscore.haz

## Alternatives

- [@gemini-wallet/core](https://npm.io/package/@gemini-wallet/core.md) — 515.6K weekly downloads
- [utility](https://npm.io/package/utility.md) — 416.6K weekly downloads
- [@primno/dpapi](https://npm.io/package/@primno/dpapi.md) — 7.2K weekly downloads
- [pi-readseek](https://npm.io/package/pi-readseek.md) — 3.7K weekly downloads
- [@emilia-protocol/verify](https://npm.io/package/@emilia-protocol/verify.md) — 1.1K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2014-12-04
- 1.0.0 — 2014-12-03

## README

# _.haz()

_.haz() is like _.has() but this underscore and/or lodash mixin lets you do deep object key existence checking with a dot denoted string, for example `'a.b.c'`

## Usage
```js
var _ = require('underscore'); // or, require('lodash');

require('underscore.haz')(_);

var o = {
  a: {
    b: {
      c: 'note'
    }
  }
};

console.log(_.haz(o, 'a.b.c'));
// => true

```

## LICENSE

ISC License (ISC)

Copyright © 2014, Buster Collings

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

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