UNPKG

neo-quote-for-the-day

Version:

Some beautiful quotes

8 lines (6 loc) 204 B
import { quotes } from './quotes'; export function getQuoteOfTheDay(): { text: string; author: string}{ const day = new Date().getDate(); return quotes[day % quotes.length]; } export { quotes };