]> gerrit.simantics Code Review - simantics/district.git/blob - es5-ext/object/is-object.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / es5-ext / object / is-object.js
1 'use strict';
2
3 var map = { function: true, object: true };
4
5 module.exports = function (x) {
6         return ((x != null) && map[typeof x]) || false;
7 };