/* Copyright (c) 2018 Environmental Systems Research Institute, Inc. * Apache-2.0 */ export const TOMORROW = (function() { const now = new Date(); now.setDate(now.getDate() + 1); return now; })(); export const YESTERDAY = (function() { const now = new Date(); now.setDate(now.getDate() - 1); return now; })();