12import { calcHash } from './calcHashF.mts'34export const calcShortHash = (props: string): string => {5 return calcHash(props).slice(0, 9)6}