mirror of
https://github.com/PotentiaRobotics/robot-gui.git
synced 2025-04-20 11:00:15 -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];
|
|
}
|
|
}
|
|
};
|