UNPKG

defined

Version:

return the first argument that is `!== undefined`

10 lines (8 loc) 178 B
'use strict'; module.exports = function defined() { for (var i = 0; i < arguments.length; i++) { if (typeof arguments[i] !== 'undefined') { return arguments[i]; } } };