UNPKG

react-day-picker

Version:

Customizable Date Picker for React

15 lines (14 loc) 404 B
import * as defaultFormatters from "../formatters/index.js"; /** * Merges custom formatters from the props with the default formatters. * * @param customFormatters The custom formatters provided in the DayPicker * props. * @returns The merged formatters object. */ export function getFormatters(customFormatters) { return { ...defaultFormatters, ...customFormatters, }; }