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