UNPKG

@croct/plug-react

Version:

React components and hooks to plug your React applications into Croct.

13 lines (12 loc) 220 B
function hash(value) { let code = 0; for (const char of value) { const charCode = char.charCodeAt(0); code = (code << 5) - code + charCode; code |= 0; } return code.toString(16); } export { hash };