(data: string | BufferSource): string Computes a fast non-cryptographic hash using DJB2 algorithm. Use for content comparison and cache keys, not security.
Note: Strings use UTF-16 code units, buffers use raw bytes.
For non-ASCII, hash_insecure(str) !== hash_insecure(encoder.encode(str)).
data
String or binary data to hash.
string | BufferSourcereturns
string 8-character hex-encoded unsigned 32-bit hash.