mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-19 22:29:04 +01:00
806a66e006
Co-authored-by: Jamie <113370520+jamiebuilds-signal@users.noreply.github.com>
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export function unencodeNumber(number: string): [string, ...Array<string>] {
|
|
return number.split('.');
|
|
}
|