UNPKG

@cainiaofe/cn-ui-m

Version:
12 lines (11 loc) 338 B
import { dateToDayjs } from "../../cn-time-picker-pro/utils"; import { isValidDate } from "../../../utils/date"; export function getDefaultTime(value, defaultValue, format) { if (isValidDate(value)) { return value; } if (defaultValue) { return dateToDayjs(defaultValue, format); } return new Date(); }