Hash a string via DJBX33A (Daniel J. Bernstein, Times 33 with Addition).
https://stackoverflow.com/questions/10696223/reason-for-5381-number-in-djb-hash-function/13809282#13809282
string to hash
integer (possibly negative)
import { hashCode } from "@trashpanda001/helpers/string"hashCode("abc")// 108966 Copy
import { hashCode } from "@trashpanda001/helpers/string"hashCode("abc")// 108966
Hash a string via DJBX33A (Daniel J. Bernstein, Times 33 with Addition).
https://stackoverflow.com/questions/10696223/reason-for-5381-number-in-djb-hash-function/13809282#13809282