mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
6 lines
91 B
JavaScript
6 lines
91 B
JavaScript
function unique (array) {
|
|
return Array.from(new Set(array));
|
|
}
|
|
|
|
module.exports = unique;
|