mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2025-03-13 13:16:16 -06:00
5 lines
104 B
JavaScript
5 lines
104 B
JavaScript
'use strict';
|
|
|
|
module.exports = (...arguments_) => {
|
|
return [...new Set([].concat(...arguments_))];
|
|
};
|