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