跨环境可用的判断对象是否为 Date 类型方法
function isDate(target) {
  if (target === null ||
    typeof target !== 'object' ||
    typeof target.toString !== 'function' ||
    typeof target.valueOf !== 'function'
  ) return false
  const typeCastingResult = '' + target
  const toStringResult = target.toString()
  if (toStringResult !== typeCastingResult) return false
  const valueOfResult = '' + target.valueOf()
  return valueOfResult !== typeCastingResult
}

Powered by Sairin