Files
tf_code/packages/app/src/pages/session/message-id-from-hash.ts

7 lines
200 B
TypeScript

export const messageIdFromHash = (hash: string) => {
const value = hash.startsWith("#") ? hash.slice(1) : hash
const match = value.match(/^message-(.+)$/)
if (!match) return
return match[1]
}