crypto
Functions
hash()
Hashes any JavaScript value into a deterministic string.
The value is serialized first and then hashed, which makes this helper useful for cache keys, content fingerprints, and change detection inside plugins.
This helper is not intended for password hashing or other security-sensitive cryptographic workflows.
Parameters
input
unknown
Any JavaScript value to hash.
Returns
string
A stable hash string for the provided input.
Example
See
Powered by ohash (MIT): https://github.com/unjs/ohash