UNPKG
d-utils
Version:
beta (4.0.0-beta)
latest (4.0.3)
4.0.3
4.0.2
4.0.1
4.0.0
4.0.0-beta
3.0.2
3.0.1
3.0.0
2.3.3
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
1.4.0
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
0.0.1
0.0.0
d-utils
d-utils
/
dist
/
es
/
intersection.d.ts
8 lines
(7 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** *
@description
返回两个数组之间的交集 *
@param
{
Array
} args 可以是多个数组,两个数组 *
@return
{
Array
} 返回数组 */
declare
function
intersection
(
a
:
any
[],
b
:
any
[]
):
any
[];
export
default
intersection;