Returns true for RegExp instances
Returns true for RegExp instances, even if they are subclass instances or from other realms.
RegExp
import * as _ from 'radashi' _.isRegExp(/.+/) // true_.isRegExp(new RegExp('.+')) // true_.isRegExp(new (class extends RegExp {})('.+')) // true