1.0.0 • Published 7 years ago

is-null-or-empty-ms v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

is-null-or-empty-ms

A Node.js package that checks whether a given string is null or empty. A basic package for an npm publish tutorial.

Usage

First, install the package using npm:

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

Then, require the package and use it like so:

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

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

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

License

ISC