fc5459a9d3a4fec2f9d72073593bcbbd644e3fb9
[platform/framework/web/crosswalk-tizen.git] /
1 var isKind = require('./isKind');
2     /**
3      */
4     function isRegExp(val) {
5         return isKind(val, 'RegExp');
6     }
7     module.exports = isRegExp;
8