11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { QueryFailedError } from 'typeorm';
|
|
|
|
export function isDuplicateKeyValueError(e: unknown | Error): boolean {
|
|
return e instanceof QueryFailedError && e.driverError.code === '23505';
|
|
}
|