README
noofdays
A small library for getting no of days between two dates for node.
//import noofdays
var days=require("noofdays");
//give start_date and end_date
var number=days.noofdays("start_date","end_date");
//start_date=09/08/2015 and end_date=16/08/2015
//number=7
console.log(number);
Installation
$ npm install noofdays