UNPKG

proj4

Version:

Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.

6 lines (5 loc) 100 B
export default function (x) { var r = Math.exp(x); r = (r - 1 / r) / (r + 1 / r); return r; }