import * as S from "flurp/string";const hasVowel = S.includesRegex(/[aeiou]/i);hasVowel("weasel"); // truehasVowel("wxyz"); // false
Example