Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
coyotte508
/
js-hub
like
0
Model card
Files
Files and versions
Community
main
js-hub
/
utils
/
typedInclude.ts
coyotte508
HF Staff
Add 1 files
21dd449
verified
25 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
112 Bytes
export
function
typedInclude<V, T
extends
V>(
arr
:
readonly
T[],
v
: V): v is T {
return
arr.
includes
(v
as
T);
}