deno.land / x / froebel@v0.23.2 / oneOf.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
/** Checks if `v` is one of `cmps`. */const oneOf = < T, TT extends (T extends string ? string & T : T extends number ? number & T : any)[],>( value: T, ...cmps: TT): value is TT[number] => cmps.includes(value as any);
export default oneOf;
froebel

Version Info

Tagged at
a year ago