mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
6 lines
131 B
JavaScript
6 lines
131 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
function unique (array) {
|
|
return Array.from(new Set(array));
|
|
}
|
|
|
|
module.exports = unique;
|