UNPKG

lenye_base

Version:

基础方法

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