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