aboutsummaryrefslogtreecommitdiff
path: root/node_modules/array-union/index.js
blob: 7f85d3d193ab85d0a1e0498933241a299468118a (plain)
1
2
3
4
5
'use strict';

module.exports = (...arguments_) => {
	return [...new Set([].concat(...arguments_))];
};