芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/react-dates/esm/utils/toLocalizedDateString.js
import moment from 'moment'; import toMomentObject from './toMomentObject'; import { DISPLAY_FORMAT } from '../constants'; export default function toLocalizedDateString(date, currentFormat) { var dateObj = moment.isMoment(date) ? date : toMomentObject(date, currentFormat); if (!dateObj) return null; return dateObj.format(DISPLAY_FORMAT); }