mirror of
https://github.com/wizarrrr/wizarr.git
synced 2026-06-12 07:44:46 -04:00
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
'use strict';
|
|
|
|
module.exports = function defined() {
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
if (typeof arguments[i] !== 'undefined') {
|
|
return arguments[i];
|
|
}
|
|
}
|
|
};
|