]> gerrit.simantics Code Review - simantics/district.git/blob - valid-callable.js
c977527a4fd6606e1acace279a94184a861146c1
[simantics/district.git] / 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 };