Appearance
function isTomorrow(date): boolean;
Check if the given date is tomorrow in local time. 检查日期是否为明天(本地时间)。
date
Date
boolean
isTomorrow(new Date(Date.now() + 86400000)) // => true (approximately)
1.0.0