You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
216 B

2 years ago
exports = function() {
var arr = arguments;
var ret = arr[0];
for (var i = 1, len = arr.length; i < len; i++) {
if (arr[i] > ret) ret = arr[i];
}
return ret;
};
module.exports = exports;