class Sprockets::UnloadedAsset

def params

Returns a Hash.

Then the params would be `{type: "application/javascript"}`
If the URI is `file:///Full/path/app/assets/javascripts/application.js"type=application/javascript`

Example

and `:pipeline`. Hash may be empty.
digest for the asset (includes dependency digest as opposed to a digest of only file contents)
Known keys include `:type` which store the asset's mime-type, `:id` which is a fully resolved
This information is generated and used internally by sprockets.

Internal: Hash of param values
def params
  unless @params
    load_file_params
  end
  @params
end