Merge pull request #19 from mathiasbynens/patch-2

Fix set usage
master
Zach Leatherman 2018-09-18 07:00:55 -05:00 committed by GitHub
commit 628c62c526
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,9 @@ module.exports = function(collection) {
return true;
});
tagSet.add(...tags);
for (const tag of tags) {
set.add(tag);
}
}
});