=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== librouter-simple-perl-0.17/README.md-27- librouter-simple-perl-0.17/README.md:28:Router::Simple can match against PSGI `$env` directly, which means librouter-simple-perl-0.17/README.md-29-it's easy to use with PSGI supporting web frameworks. ############################################## librouter-simple-perl-0.17/README.md-91- librouter-simple-perl-0.17/README.md:92: This method returns last `$router->match()` call is rejected by HTTP method or not. librouter-simple-perl-0.17/README.md-93- ############################################## librouter-simple-perl-0.17/README.md-130- librouter-simple-perl-0.17/README.md:131: A function that evaluates the request. Its signature must be `($environ, $match) => bool`. It should return true if the match is librouter-simple-perl-0.17/README.md:132: successful or false otherwise. The first argument is `$env` which is librouter-simple-perl-0.17/README.md-133- either a PSGI environment or a request path, depending on what you ############################################## librouter-simple-perl-0.17/README.md-136- librouter-simple-perl-0.17/README.md:137: The function can modify `$env` (in case it's a reference) and librouter-simple-perl-0.17/README.md:138: `$match` in place to affect which variables are returned. This allows librouter-simple-perl-0.17/README.md-139- a wide range of transformations. librouter-simple-perl-0.17/README.md-140- librouter-simple-perl-0.17/README.md:141:- `$router->submapper($path, [\%dest, [\%opt]])` librouter-simple-perl-0.17/README.md-142- ############################################## librouter-simple-perl-0.17/README.md-148- librouter-simple-perl-0.17/README.md:149:- `$match = $router->match($env|$path)` librouter-simple-perl-0.17/README.md-150- ############################################## librouter-simple-perl-0.17/README.md-165- librouter-simple-perl-0.17/README.md:166:- `my ($match, $route) = $router->routematch($env|$path);` librouter-simple-perl-0.17/README.md-167- ############################################## librouter-simple-perl-0.17/README.md-172- librouter-simple-perl-0.17/README.md:173:- `$router->as_string()` librouter-simple-perl-0.17/README.md-174-