export default {
isDate: str => {
var date = new Date(str);
// 如果传入的字符串不是有效的日期,则获取的时间戳为 NaN
return !isNaN(date.getTime());
}