initial commit
This commit is contained in:
6
node_modules/uniqs/index.js
generated
vendored
Normal file
6
node_modules/uniqs/index.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
module.exports = function uniqs() {
|
||||
var list = Array.prototype.concat.apply([], arguments);
|
||||
return list.filter(function(item, i) {
|
||||
return i == list.indexOf(item);
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user