mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 03:22:33 -06:00
5 lines
150 B
JavaScript
5 lines
150 B
JavaScript
module.exports = function () {
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
if (arguments[i] !== undefined) return arguments[i];
|
|
}
|
|
};
|