module Roda::RodaPlugins::Assets::RequestClassMethods
def assets_matchers
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.to_s.freeze, assets_regexp(t)].freeze if roda_class.assets_opts[t] end.compact.freeze end