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