isDate property

bool get isDate

Implementation

bool get isDate {
  const key = '__flujs_internal_isDate__';
  return _typeCheckInJS(key, '''
function $key(v) {
console.log('__flujs_internal_isDate__1: ', v);
const t = typeof v;
console.log('__flujs_internal_isDate__2: ', t);
if (t === 'object') { return v instanceof Date; }
return false;
}
''');
}