forked from graphile/migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.ts
36 lines (33 loc) · 932 Bytes
/
lib.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export function mergeWithoutClobbering(
original: { [key: string]: string | undefined },
newStuff: { [key: string]: string | undefined },
message: string,
): { [key: string]: string | undefined } {
const result = { ...original };
for (const key in newStuff) {
if (typeof result[key] === "undefined" || result[key] === newStuff[key]) {
result[key] = newStuff[key];
} else {
throw new Error(
`Refusing to clobber '${key}' (from '${original[key]}' to '${newStuff[key]}'): ${message}`,
);
}
}
return result;
}
export function isLoggedError(error: unknown): boolean {
return (
typeof error === "object" &&
error !== null &&
"_gmlogged" in error &&
error._gmlogged === true
);
}
export function errorCode(e: unknown): string | null {
return typeof e === "object" &&
e !== null &&
"code" in e &&
typeof e.code === "string"
? e.code
: null;
}