On this page:
make
Version: 4.1

5.6 Filtering Requests

 (require web-server/dispatchers/dispatch-filter)

The web-server/dispatchers/dispatch-filter module defines a dispatcher constructor that calls an underlying dispatcher with all requests that pass a predicate.

(make regex inner)  dispatcher?

  regex : regexp?

  inner : dispatcher?

Calls inner if the URL path of the request, converted to a string, matches regex. Otherwise, calls next-dispatcher.