Module

x/lodash_es/src/math.js

lodash for deno use
Latest
import * as mod from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/math.js";

Variables

Adds two numbers.

Computes number rounded up to precision.

Divide two numbers.

Computes number rounded down to precision.

Multiply two numbers.

Computes number rounded to precision.

Subtract two numbers.

Functions

Computes the maximum value of array. If array is empty or falsey, undefined is returned.

This method is like _.max except that it accepts iteratee which is invoked for each element in array to generate the criterion by which the value is ranked. The iteratee is invoked with one argument: (value).

Computes the mean of the values in array.

This method is like _.mean except that it accepts iteratee which is invoked for each element in array to generate the value to be averaged. The iteratee is invoked with one argument: (value).

Computes the minimum value of array. If array is empty or falsey, undefined is returned.

This method is like _.min except that it accepts iteratee which is invoked for each element in array to generate the criterion by which the value is ranked. The iteratee is invoked with one argument: (value).

Computes the sum of the values in array.

This method is like _.sum except that it accepts iteratee which is invoked for each element in array to generate the value to be summed. The iteratee is invoked with one argument: (value).