iceshrimp-legacy/packages/backend/src/misc/is-duplicate-key-value-error.ts
ThatOneCalculator 6b00abf05c
refactor: 🎨 rome
2023-01-12 20:40:33 -08:00

6 lines
146 B
TypeScript

export function isDuplicateKeyValueError(e: unknown | Error): boolean {
return (
(e as Error).message?.startsWith("duplicate key value")
);
}