UNPKG

react-dates

Version:

A responsive and accessible date range picker component built with React

11 lines (8 loc) 242 B
import moment from 'moment'; const momentPool = new Map(); export default function getPooledMoment(dayString) { if (!momentPool.has(dayString)) { momentPool.set(dayString, moment(dayString)); } return momentPool.get(dayString); }