コード例 #1
0
function _isRegExp($object)
{
    return Underscore::isRegExp($object);
}
コード例 #2
0
ファイル: Underscore.php プロジェクト: brombal/underscore.php
 /**
  * @tags objects
  */
 public function testIsRegExp()
 {
     $this->boolean(_::isRegExp('/\\w+/mi'))->isTrue();
     $this->boolean(_::isRegExp('w+'))->isFalse();
 }