Comparing version 1.0.0 to 1.0.1
'use strict'; | ||
module.exports = Math.atanh || function (x) { | ||
return Math.log((1+x) / (1-x)) / 2; | ||
return Math.log((1 + x) / (1 - x)) / 2; | ||
}; |
{ | ||
"name": "atanh", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A ponyfill for ES6 Math.atanh", | ||
@@ -27,8 +27,10 @@ "license": "MIT", | ||
"tanh", | ||
"atanh" | ||
"atanh", | ||
"shim" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"ava": "^0.0.4" | ||
"ava": "^0.0.4", | ||
"require-uncached": "^1.0.2" | ||
} | ||
} |
2438
2