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