module Sprockets::Processing

def default_processors_for(type, file_type, engine_extnames)

def default_processors_for(type, file_type, engine_extnames)
  bundled_processors = config[:bundle_processors][type]
  if bundled_processors.any?
    bundled_processors
  else
    self_processors_for(type, file_type, engine_extnames)
  end
end