Remove duplicate helper function from missingCaseError
This commit is contained in:
parent
b38590a4ac
commit
85ae41eb1c
1 changed files with 3 additions and 12 deletions
|
@ -1,16 +1,7 @@
|
||||||
// Copyright 2018-2020 Signal Messenger, LLC
|
// Copyright 2018-2022 Signal Messenger, LLC
|
||||||
// SPDX-License-Identifier: AGPL-3.0-only
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
const stringify = (value: unknown): string => {
|
import { reallyJsonStringify } from './reallyJsonStringify';
|
||||||
try {
|
|
||||||
// `JSON.stringify` can return `undefined` (TypeScript has incorrect types here).
|
|
||||||
// However, this is fine because we interpolate it into a string, so it shows up as
|
|
||||||
// "undefined" in the final error message.
|
|
||||||
return JSON.stringify(value);
|
|
||||||
} catch (err) {
|
|
||||||
return Object.prototype.toString.call(value);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// `missingCaseError` is useful for compile-time checking that all `case`s in
|
// `missingCaseError` is useful for compile-time checking that all `case`s in
|
||||||
// a `switch` statement have been handled, e.g.
|
// a `switch` statement have been handled, e.g.
|
||||||
|
@ -32,4 +23,4 @@ const stringify = (value: unknown): string => {
|
||||||
// handled by our `switch` / `case` statement which is useful for code
|
// handled by our `switch` / `case` statement which is useful for code
|
||||||
// maintenance and system evolution.
|
// maintenance and system evolution.
|
||||||
export const missingCaseError = (x: never): TypeError =>
|
export const missingCaseError = (x: never): TypeError =>
|
||||||
new TypeError(`Unhandled case: ${stringify(x)}`);
|
new TypeError(`Unhandled case: ${reallyJsonStringify(x)}`);
|
||||||
|
|
Loading…
Add table
Reference in a new issue