Check if Subject includes Search. If either of them is not a string, returns Else.
Subject
Search
Else
type R = StringPlus.Includes<'abc', 'a'> // truetype R = StringPlus.Includes<'abc', 'd'> // false Copy
type R = StringPlus.Includes<'abc', 'a'> // truetype R = StringPlus.Includes<'abc', 'd'> // false
Check if
Subject
includesSearch
. If either of them is not a string, returnsElse
.