0.1.0 • Published 8 years ago

recursive-max v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

recursive-max

Returns the largest number from a multidimensional array or object.

npm install recursive-max

Build Status

About

An easy to use solution for finding the largest number from a multidimensional array or object.

Arrays and objects are traversed recursively, number values are compared, the rest are skipped.

Returns false on failure.

Syntax

recursiveMax(objOrArray, max)

objOrArray

Object or array to fetch the maximum number from.

max

Optional. Use it to specify a temporary maximum value.

Usage

Call recursiveMax() by passing the array or object you wish to find the largest number from. If you specify max, it will be the maximum possible result.

var input = [0, 11, [4, 15]];
var max = recursiveMax(input);

console.log(max); // 15

License

MIT