module Sprockets::DigestUtils

def hexdigest(obj)

Experimental RBS support (using type sampling data from the type_fusion project).

def hexdigest: (String obj) -> String

This signature was generated using 3 samples from 1 application.

Returns a String digest of the object.

obj - A JSON serializable object.

The same as `pack_hexdigest(digest(obj))`.

Internal: Generate a hexdigest for a nested JSON serializable object.
def hexdigest(obj)
  build_digest(obj).hexdigest!
end