@@ -203,8 +203,14 @@ for i, v in ipairs(c) do if c[1](exp) then return c[2](exp) end end end + +fn.strmatch = function(tbl, str) + if tbl == str then return true end + if type(tbl) == 'string' then return false end + return fn.has(tbl, str) +end fn.select = function(tbl, prop, ...) local keycache local check if type(prop) == 'function' then