UNPKG

lenye_base

Version:

基础方法

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