mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-08-29 09:25:57 +01:00
Migrate scripts to ESM and ts-check
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// Copyright 2025 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
// @ts-check
|
||||
|
||||
/**
|
||||
* @param {boolean} condition
|
||||
* @param {string} message
|
||||
* @returns {asserts condition}
|
||||
*/
|
||||
export function assert(condition, message) {
|
||||
if (!condition) {
|
||||
throw new TypeError(message);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {never} value
|
||||
* @returns {never}
|
||||
*/
|
||||
export function unreachable(value) {
|
||||
throw new TypeError(`Expected case to be unreachable, found ${value}`);
|
||||
}
|
||||
Reference in New Issue
Block a user