I am using JSweet to transpile Java into Javascript and I need to use Math.tanh()
but it's not available in the jsweet.lang.Math
object, but I see it in the source:
It's also missing from the API documentation:
Which Math is it using and how do I use the one that implements tanh()
?
If you want to use Math.tanh(), which is an ECMAScript 6 feature, you should target ES6 in your pom.xml and add a reference to core-lib 6.
Anyway, if you feel that way, you can also use this MDN equivalent using just simple Math.exp() calls: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/tanh#Polyfill
Easy to use in JSweet :)
Hope this helped.