Sware
Created page with "local export = {} local byte = string.byte local find = string.find local gsub = string.gsub local match = string.match do local pattern_chars local function get_pattern_chars() pattern_chars, get_pattern_chars = { ["\0"] = "%z", ["$"] = "%$", ["%"] = "%%", ["("] = "%(", [")"] = "%)", ["*"] = "%*", ["+"] = "%+", ["-"] = "%-", ["."] = "%.", ["?"] = "%?", ["["] = "%[", ["]"] = "%]", ["^"] = "%^", }, nil return pattern_chars end --[==[Escapes the magic..."