proj4js/lib/common/sign.js

3 lines
56 B
JavaScript

module.exports = function(x) {
return x<0 ? -1 : 1;
};