UNPKG

midnight-tomorrow

Version:

A small node module that returns a date object of tomorrow at midnight.

11 lines (9 loc) 243 B
// This module returns the unix timestamp at midnight tomorrow module.exports = function(date) { return new Date( new Date( date.getFullYear(), date.getMonth(), date.getDate(), 0,0,0).getTime() + 60 * 60 * 24 * 1000); }