1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-13 11:56:46 +02:00
TableFilter/src-es6/helpers.js
2014-11-16 11:29:07 +11:00

12 lines
156 B
JavaScript

/**
* Misc helpers
*/
var Helpers = {
isIE: function(){
return (/msie|MSIE/).test(navigator.userAgent);
}
};
exports.Helpers = Helpers;