UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

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