]> gerrit.simantics Code Review - simantics/district.git/blob - cosh/is-implemented.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / cosh / is-implemented.js
1 'use strict';
2
3 module.exports = function () {
4         var cosh = Math.cosh;
5         if (typeof cosh !== 'function') return false;
6         return cosh(1) === 1.5430806348152437;
7 };