mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-13 20:57:24 +01:00
8 lines
106 B
JavaScript
8 lines
106 B
JavaScript
'use strict';
|
|
|
|
function unique (array) {
|
|
return Array.from(new Set(array));
|
|
}
|
|
|
|
module.exports = unique;
|