UNPKG

sd-is

Version:

Tiny JavaScript type check utility functions with smart developer-friendly feedback.

4 lines (3 loc) 140 B
export default function isDate(value) { return Object.prototype.toString.call(value) === '[object Date]' && !isNaN(value.getTime()); }