/* eslint-disable import/no-commonjs */ function unique (array) { return Array.from(new Set(array)); } module.exports = unique;