Appearance
function caseInsensitiveIncludes(haystack, needle): boolean;
Case-insensitive string inclusion check. 大小写不敏感包含判断。
haystack
string
needle
boolean
caseInsensitiveIncludes('Hello', 'ell') // => true
1.3.0