]> gerrit.simantics Code Review - simantics/district.git/blob - es5-ext/object/valid-callable.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / es5-ext / object / valid-callable.js
1 'use strict';
2
3 module.exports = function (fn) {
4         if (typeof fn !== 'function') throw new TypeError(fn + " is not a function");
5         return fn;
6 };