module Roda::RodaPlugins::Assets::RequestClassMethods

def assets_matchers

handled.
An array of asset type strings and regexps for that type, for all asset types
def assets_matchers
  @assets_matchers ||= [:css, :js].map do |t|
    [t, assets_regexp(t)].freeze if roda_class.assets_opts[t]
  end.compact.freeze
end