1module.exports = function () { 2 for (var i = 0; i < arguments.length; i++) { 3 if (arguments[i] !== undefined) return arguments[i]; 4 } 5}; 6 7