wishthis/node_modules/array-union/index.js

6 lines
104 B
JavaScript
Raw Permalink Normal View History

2022-01-21 08:28:41 +00:00
'use strict';
2023-08-17 09:47:40 +00:00
module.exports = (...arguments_) => {
return [...new Set([].concat(...arguments_))];
2022-01-21 08:28:41 +00:00
};