import * as L from "flurp/logic";const isVowel = L.isOneOf(["a", "e", "i", "o", "u"]);isVowel("i"); // trueisVowel("m"); // false
Example