UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

11 lines (8 loc) 150 B
'use strict'; /** * Returns the largest element in an array */ function max(target) { return Math.max.apply(0, target); } module.exports = max;