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