mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-30 09:46:35 +00:00
7 lines
200 B
TypeScript
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]
|
|
}
|