max.js 79 B

123
  1. module.exports = function (numbers) {
  2. return Math.max.apply(null, numbers)
  3. }