Search npm for packages to use with Deno
Add them to your projects with a simple command that will already feel familar.
math-float64-get-high-word
Returns a 32-bit integer corresponding to the more significant 32 bits of a double-precision floating-point number.
math-float64-exponent
Returns an integer corresponding to the unbiased exponent of a double-precision floating-point number.
math-floor
Rounds a numeric value toward negative infinity.
math-ceil
Rounds a numeric value toward positive infinity.
math-evalpoly
Evaluates a polynomial.
math-abs
Computes an absolute value.
math-float64-from-words
Creates a double-precision floating-point number from a higher order word and a lower order word.
math-float64-to-words
Splits a floating-point number into a higher order word and a lower order word.
math-float64-normalize
Returns a normal number `y` and exponent `exp` satisfying `x = y * 2^exp`.
math-exp
Natural exponential function.
math-float64-set-low-word
Sets the less significant 32 bits of a double-precision floating-point number.
math-truncate
Rounds a numeric value toward zero.
math-float64-copysign
Returns a double-precision floating-point number with the magnitude of x and the sign of y.
math-float64-ldexp
Multiplies a double-precision floating-point number by an integer power of two.
math-erf
Error function.
math-float64-frexp
Splits a double-precision floating-point number into a normalized fraction and an integer power of two.
math-float32-to-binary-string
Returns a string giving the literal bit representation of a single-precision floating-point number.
math-sqrt
Computes the principal square root.
math-power
Exponential function.
math-ln
Natural logarithm.