UNPKG

lenye_base

Version:

基础方法

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