@oazmi/kitchensink - v0.9.13
    Preparing search index...

    Variable math_hypotConst

    math_hypot: (...values: number[]) => number = ...

    alias for Math.hypot.

    Type declaration

      • (...values: number[]): number
      • Returns the square root of the sum of squares of its arguments.

        Parameters

        • ...values: number[]

          Values to compute the square root for. If no arguments are passed, the result is +0. If there is only one argument, the result is the absolute value. If any argument is +Infinity or -Infinity, the result is +Infinity. If any argument is NaN, the result is NaN. If all arguments are either +0 or −0, the result is +0.

        Returns number