minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / src / internal / util / isDate.ts
1 export function isDate(value: any): value is Date {
2   return value instanceof Date && !isNaN(+value);
3 }