diff options
Diffstat (limited to 'node_modules/array-union/index.js')
-rw-r--r-- | node_modules/array-union/index.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/node_modules/array-union/index.js b/node_modules/array-union/index.js new file mode 100644 index 0000000..7f85d3d --- /dev/null +++ b/node_modules/array-union/index.js @@ -0,0 +1,5 @@ +'use strict'; + +module.exports = (...arguments_) => { + return [...new Set([].concat(...arguments_))]; +}; |