mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-29 12:12:36 +01:00
7 lines
131 B
JavaScript
7 lines
131 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
function unique (array) {
|
|
return Array.from(new Set(array));
|
|
}
|
|
|
|
module.exports = unique;
|