summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/lib/utils/type_utility.js
blob: dc30babd645d9d5f4b3be00fd8af55b7abf8eba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(function() {
  (function(w) {
    var base;
    if (w.gl == null) {
      w.gl = {};
    }
    if ((base = w.gl).utils == null) {
      base.utils = {};
    }
    return w.gl.utils.isObject = function(obj) {
      return (obj != null) && (obj.constructor === Object);
    };
  })(window);

}).call(this);