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