importParserfrom"./Parser.js";
importFragmentfrom"./Fragment.js";
/**
* @return a Parser instance with which the user can execute find and replace operations
*/exportfunctiongrub(content, rules = "es") {
returnnewParser(content, rules);
}
export { Fragment, Parser };