Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
408 B
Text
8 lines
408 B
Text
export namespace errorUtil {
|
|
export type ErrMessage = string | { message?: string | undefined };
|
|
export const errToObj = (message?: ErrMessage): { message?: string | undefined } =>
|
|
typeof message === "string" ? { message } : message || {};
|
|
// biome-ignore lint:
|
|
export const toString = (message?: ErrMessage): string | undefined =>
|
|
typeof message === "string" ? message : message?.message;
|
|
}
|