🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
104 B
JavaScript
6 lines
104 B
JavaScript
'use strict';
|
|
|
|
module.exports = (...arguments_) => {
|
|
return [...new Set([].concat(...arguments_))];
|
|
};
|