/** * @module indicative-rules */ /** * Exports [isTomorrow](https://date-fns.org/v1.30.1/docs/isTomorrow) function from `date-fns`. So * make sure to check their docs. * * @example * ```js * const { is } = require('indicative') * * const date = new Date() * date.setDate(date.getDate() + 1) * * if (is.tomorrow(date)) { * } * ``` */ export { isTomorrow as tomorrow } from 'date-fns';