README
cpm-myfirst-npm-pkg
This is for learning purpose
Usage
Install the package using npm : npm install cpm-myfirst-npm-pkg --save Then, require the package and use it: [Comment: To check if this usage is proper] var isNullOrEmpty = require('cpm-myfirst-npm-pkg'); console.log(isNullOrEmpty("")); // true [Sample] console.log(isNullOrEmpty("Hello World")); // false [Sample]