Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
module.exports = function unique_(arr) {
if (!Array.isArray(arr)) {
throw new TypeError('utils#array.unique() expects an array.');
}
return uniq.apply(uniq, arguments);
};