isRegExp property

bool get isRegExp

Implementation

bool get isRegExp {
  const key = '__flujs_internal_isRegExp__';
  return _typeCheckInJS(key, '''
function $key(v) {
const t = typeof v;
if (t === 'object') { return v instanceof RegExp; }
return false;
}
''');
}