tcs-npm-basic
v1.0.0
Published
Basic understanding of how to publish a npm package
Readme
tcs-npm-basic
This package contains a function which will true if supplied proper input and false in vice versa.
usage
npm install tcs-npm-basic --save-dev
Then, require the package and use it:
[Comment: To check if this usage is proper]
var isNullOrEmpty = require('is-null-or-empty');
console.log(isNullOrEmpty("")); // true
console.log(isNullOrEmpty("Hello World")); // false
