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