module Sprockets::Processing

def postprocessors(mime_type = nil)

recommended to subclass `Tilt::Template`.
All `Processor`s must follow the `Tilt::Template` interface. It is

Postprocessors are ran after Preprocessors and Engine processors.

extension will be returned.
argument is supplied, the processors registered under that
Returns an `Array` of `Processor` classes. If a `mime_type`
def postprocessors(mime_type = nil)
  if mime_type
    @postprocessors[mime_type].dup
  else
    deep_copy_hash(@postprocessors)
  end
end