Takes a Date object and returns a Date object representing the next calendar day, set to midnight local time.
$ npm install get-next-date --save
const GetNextDate = require('get-next-date');
let currentTime = new Date();
let tomorrow = GetNextDate(currentTime);