# is-null-or-empty

> Checks whether a given string is null or empty

Latest version **0.0.1** (published 2016-05-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-null-or-empty
pnpm add is-null-or-empty
yarn add is-null-or-empty
bun add is-null-or-empty
```

## 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-05-27 |
| First published | 2016-05-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | David Eliason |
| Maintainers | davethemaker |

## Links

- npm: https://www.npmjs.com/package/is-null-or-empty
- Repository: https://github.com/davethemaker/is-null-or-empty
- Homepage: https://github.com/davethemaker/is-null-or-empty#readme
- Issues: https://github.com/davethemaker/is-null-or-empty/issues
- npm.io page: https://npm.io/package/is-null-or-empty

## Recent versions

- 0.0.1 (latest) — 2016-05-27

## README

# is-null-or-empty

A Node.js package that checks whether a given string is null or empty. This is an attempt to get familiarized with npm module use and packaging, as well as publishing.

## Usage

First, install the package using npm:

    npm install is-null-or-empty --save

Then, require the package and use it like so:

    var isNullOrEmpty = require('is-null-or-empty');

    console.log(isNullOrEmpty("")); // true
    console.log(isNullOrEmpty(null)); // true
    console.log(isNullOrEmpty(undefined)); // true

    console.log(isNullOrEmpty("Hello World")); // false

## License

MIT

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