mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 02:28:35 +00:00
16 lines
No EOL
207 B
JavaScript
16 lines
No EOL
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;
|
|
}; |