this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at e28f6d2f370b4e882ed6f23d08ca0f8d94dbac5f 5 lines 240 B view raw
1// we need the date in the form yyyy-MM-dd to pass to the input 2export function toSimpleDateString(date: Date | string): string { 3 const _date = typeof date === 'string' ? new Date(date) : date 4 return _date.toISOString().split('T')[0] 5}