Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/helpers/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/helpers/create-hash-code.js

export function createHashCode(s): number
{
	return [...s].reduce(
		(hash, c) => Math.trunc(Math.imul(31, hash) + c.codePointAt(0)),
		0,
	);
}