"use strict"; module.exports = function arrayUnique(array) { return Array.from(new Set(array)); };