UNPKG
react-swift-form
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
React library fro form validation
github.com/tonai/react-swift-form
tonai/react-swift-form
react-swift-form
/
src
/
helpers
/
array.ts
4 lines
(3 loc)
•
124 B
text/typescript
View Raw
1
2
3
4
export
function
intersection
<
T
>
(
array1
:
T
[
]
,
array2
:
T
[
]
)
:
T
[
]
{
return
array1.filter
(
(
item
)
=
>
array2.includes
(
item
)
)
;
}