function _isRegExp($object) { return Underscore::isRegExp($object); }
/** * @tags objects */ public function testIsRegExp() { $this->boolean(_::isRegExp('/\\w+/mi'))->isTrue(); $this->boolean(_::isRegExp('w+'))->isFalse(); }