mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
6 lines
92 B
JavaScript
6 lines
92 B
JavaScript
|
|
function unique (array) {
|
|
return Array.from(new Set(array));
|
|
}
|
|
|
|
module.exports = unique;
|