Documentation moved.This entry is now part of the unified function reference. Open the unified page → API/nerdamer APIFunctionnerdamer.asinhsrc/index.ts:762nerdamer.asinh(x: ExpressionInput): ExpressionComputes the inverse hyperbolic sine of an expression. -`asinh(0) = 0`-`asinh(+∞) = +∞`,`asinh(−∞) = −∞`- For complex inputs, uses`log(x + sqrt(x² + 1))`.ParametersNameTypeDescriptionxExpressionInputThe input expression.ReturnsExpression — The inverse hyperbolic sine of `x`.Examplesasinh(0).text() // "0" // Symbolic asinh('x').text() // "asinh(x)"