Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
devtools
/
devtools-frontend
/
7a19b64c0a03cb739ec195fde5c47d10e82f576d
/
.
/
node_modules
/
array-union
/
index.js
blob: 7f85d3d193ab85d0a1e0498933241a299468118a [
file
] [
log
] [
blame
]
Mathias Bynens
79e2cf0
2020-05-29 16:46:17 +0200
[
diff
] [
blame
]
1
'use strict'
;
2
3
module
.
exports
=
(...
arguments_
)
=>
{
4
return
[...
new
Set
([].
concat
(...
arguments_
))];
5
};