UNPKG

xe-utils

Version:

JavaScript 函数库、工具类

15 lines (12 loc) 310 B
import isDate from './isDate' import helperGetDateTime from './helperGetDateTime' /** * 判断是否有效的Date对象 * * @param {any} val 对象 * @return {boolean} */ function isValidDate (val) { return isDate(val) && !isNaN(helperGetDateTime(val)) } export default isValidDate