mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 10:38:35 +00:00
16 lines
207 B
JavaScript
16 lines
207 B
JavaScript
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Variadic helper function
|
||
|
*
|
||
|
* @param args
|
||
|
* @returns {Array}
|
||
|
*/
|
||
|
|
||
|
module.exports = function variadic(args) {
|
||
|
if (Array.isArray(args[0])) {
|
||
|
return args[0];
|
||
|
}
|
||
|
|
||
|
return args;
|
||
|
};
|