Compare commits

...

1 Commits

Author SHA1 Message Date
74e2259b5c Don't throw "token not found" 2025-06-10 15:26:56 +00:00

View File

@ -19,8 +19,6 @@ export const findRunElementIndexWithToken = (paragraphElement: Element, token: s
}
}
}
throw new Error("Token not found");
};
export const splitRunElement = (runElement: Element, token: string): { readonly left: Element; readonly right: Element } => {