UNPKG

react-native-calendars

Version:
14 lines (13 loc) 257 B
let moment; // Moment is an optional dependency export const getMoment = () => { if (!moment) { try { moment = require('moment'); } catch { // Moment is not available } } return moment; };