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

16 lines
220 B
JavaScript

/**
* Misc helpers
*/
define(function (require) {
'use strict';
var Helpers = {
isIE: function(){
return (/msie|MSIE/).test(navigator.userAgent);
}
};
return Helpers;
});