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