NEWONE1 / invokeai /frontend /web /src /common /util /extractMessageFromAssertionError.ts
roshikhan301's picture
Upload 2113 files
8a37e0a verified
import type { AssertionError } from 'tsafe';
export function extractMessageFromAssertionError(error: AssertionError): string | null {
const match = error.message.match(/Wrong assertion encountered: "(.*)"/);
return match ? (match[1] ?? null) : null;
}