import { isTomorrow } from "https://deno.land/x/date_fns@v2.0.0-alpha.34/index.js";
Examples
// If today is 6 October 2014, is 7 October 14:00:00 tomorrow?
var result = isTomorrow(new Date(2014, 9, 7, 14, 0))
//=> true
// If today is 6 October 2014, is 7 October 14:00:00 tomorrow? var result = isTomorrow(new Date(2014, 9, 7, 14, 0)) //=> true