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