]> gerrit.simantics Code Review - simantics/district.git/blob - es5-ext/object/valid-value.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / es5-ext / object / valid-value.js
1 'use strict';
2
3 module.exports = function (value) {
4         if (value == null) throw new TypeError("Cannot use null or undefined");
5         return value;
6 };