UNPKG
yuxuannnn_utils
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
xs开发的前端工具包
github.com/aiketangdezhiyi/yuxuannnn_utils
aiketangdezhiyi/yuxuannnn_utils
yuxuannnn_utils
/
lib
/
array
/
index.js
8 lines
(7 loc)
•
193 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
unique
=
void
0
;
const
unique
= (
arr
) => {
return
[...
new
Set
(arr)]; };
exports
.
unique
= unique;