# @nathanfaucett/is_null_or_undefined

> checks if value is a null or undefined

Latest version **0.0.1** (published 2016-07-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install @nathanfaucett/is_null_or_undefined
pnpm add @nathanfaucett/is_null_or_undefined
yarn add @nathanfaucett/is_null_or_undefined
bun add @nathanfaucett/is_null_or_undefined
```

## 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.1 |
| Published | 2016-07-13 |
| First published | 2016-07-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Nathan Faucett |
| Maintainers | nathanfaucett |

## Links

- npm: https://www.npmjs.com/package/@nathanfaucett/is_null_or_undefined
- Repository: https://github.com/nathanfaucett/is_null_or_undefined
- Homepage: https://github.com/nathanfaucett/is_null_or_undefined#readme
- Issues: https://github.com/nathanfaucett/is_null_or_undefined/issues
- npm.io page: https://npm.io/package/@nathanfaucett/is_null_or_undefined

## Dependencies (2)

- [@nathanfaucett/is_null](https://npm.io/package/@nathanfaucett/is_null.md) 0.0.1
- [@nathanfaucett/is_undefined](https://npm.io/package/@nathanfaucett/is_undefined.md) 0.0.1

## Recent versions

- 0.0.1 (latest) — 2016-07-13

## README

[![Build Status](https://travis-ci.org/nathanfaucett/is_null_or_undefined.svg?branch=master)](https://travis-ci.org/nathanfaucett/is_null_or_undefined)

# isNullOrUndefined

isNullOrUndefined accepts any value and returns true
if the value is null or undefined.

For all other values false is returned.

**param** {Any}        any value to test

**returns** {Boolean}  the boolean result of testing value

```javascript

  isNullOrUndefined(null);   // returns true

  isNullOrUndefined(undefined);   // returns true

  isNullOrUndefined("string");    // returns false

``

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