Repository URL to install this package:
|
Version:
0.7.10 ▾
|
// (c) Copyright 2023 Supertenant Ltd. - all rights reserved.
// See LICENSE file in project root for license terms.
"use strict";module.exports=function(arr){if(arr.length<2)return arr;arr.sort();var cleaned=[arr[0]];let previous=arr[0];for(let i=1,len=arr.length;i<len;i++){var val=arr[i];previous!==val&&(previous=val,cleaned.push(val))}return cleaned};