UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

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