UNPKG

react-native-customize-selected-date

Version:
21 lines (17 loc) 451 B
import moment from 'moment' export default class CommonFn { static calendarArray (date) { const dates = [] for (let i = 0; i < 42; i += 1) { const startDate = moment(date).date(1) dates[i] = startDate.weekday(i).format('YYYY-MM-DD') } return dates } static ym (date) { return moment(date || undefined).format('YYYY-MM') } static ymd (date) { return moment(date || undefined).format('YYYY-MM-DD') } }