Improve add atendees for agenda

This commit is contained in:
Peter Maquiran
2021-04-08 20:11:25 +01:00
parent 64cc4cf79b
commit 74cd2bc26f
5 changed files with 23 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
function removeDuplicate(data){
return [...new Set(data.map(JSON.stringify))].map(JSON.parse)
}
module.exports = {
removeDuplicate: removeDuplicate
};