mirror of
https://github.com/proj4js/proj4js.git
synced 2026-01-18 16:13:22 +00:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
var HALF_PI = Math.PI/2;
|
|
var sign = require('./sign');
|
|
|
|
module.exports = function(x) {
|
|
return (Math.abs(x) < HALF_PI) ? x : (x - (sign(x) * Math.PI));
|
|
}; |