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|
    if regexp = assets_regexp(t)
      [t, regexp].freeze
    end
  end.compact.freeze
end