module Sprockets::Engines

def engines


# => {".coffee" => CoffeeScriptProcessor, ".sass" => SassProcessor, ...}
environment.engines

that extension will be returned.
If an `ext` argument is supplied, the `Engine` associated with
Returns a `Hash` of `Engine`s registered on the `Environment`.
def engines
  config[:engines]
end