UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

9 lines (7 loc) 133 B
/** * Returns the largest element in an array */ function max(target) { return Math.max.apply(0, target); } export default max;