Code coverage report for lang/isRegExp.js

Statements: 100% (5 / 5)      Branches: 100% (0 / 0)      Functions: 100% (3 / 3)      Lines: 100% (4 / 4)     

All files » lang/ » isRegExp.js
1 2 3 4 5 6 7 8 91     1 7   1    
define(['./isKind'], function (isKind) {
    /**
     */
    function isRegExp(val) {
        return isKind(val, 'RegExp');
    }
    return isRegExp;
});