index.js 139 Bytes
Newer Older
liang ce committed
1 2 3 4 5 6
'use strict';
var arrayUniq = require('array-uniq');

module.exports = function () {
	return arrayUniq([].concat.apply([], arguments));
};