#![allow(clippy::cargo_common_metadata)] use mlua::prelude::*; use lune_utils::TableBuilder; mod captures; mod matches; mod regex; use self::regex::LuaRegex; /** Creates the `regex` standard library module. # Errors Errors when out of memory. */ pub fn module(lua: &Lua) -> LuaResult { TableBuilder::new(lua)? .with_function("new", new_regex)? .build_readonly() } fn new_regex(_: &Lua, pattern: String) -> LuaResult { LuaRegex::new(pattern) }