signal-desktop/ts/util/normalizeDeviceName.ts
2021-12-16 16:02:22 +01:00

7 lines
272 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export function normalizeDeviceName(rawDeviceName: string): string {
// We want to do additional normalization here. See DESKTOP-2845.
return rawDeviceName.trim().replace(/\0/g, '');
}