Title and description
This is self-explanatory. It tells about the module/package name with a short description.
angularisempty
A small utility check value is empty or not. Installation instruction In this section, let's tell the user how they can install the package: npm install angularisempty --save Instruction to use the packageHow to use?
import { AngularIsEmpty } from 'angularisempty'; //in component
AngularIsEmpty.isEmpty('value') //it return true/false, if value null, undefine than return true otherwise false
console.log(AngularIsEmpty.isEmpty('value')); //true (false if value is empty)