// Copyright 2019-2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only export function cleanId(id: string): string { return id.replace(/[^\u0020-\u007e\u00a0-\u00ff]/g, '_'); }