Files

11 lines
167 B
JavaScript
Raw Permalink Normal View History

2021-04-08 20:11:25 +01:00
function removeDuplicate(data){
return [...new Set(data.map(JSON.stringify))].map(JSON.parse)
}
module.exports = {
removeDuplicate: removeDuplicate
};