PHP WebShell
Текущая директория: /usr/lib/node_modules/bitgo/node_modules/@iota/bcs/src
Просмотр файла: b58.ts
// Copyright (c) Mysten Labs, Inc.
// Modifications Copyright (c) 2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import bs58 from 'bs58';
export const toBase58 = (buffer: Uint8Array) => bs58.encode(buffer);
export const fromBase58 = (str: string) => bs58.decode(str);
/** @deprecated use toBase58 instead */
export const toB58 = toBase58;
/** @deprecated use fromBase58 instead */
export const fromB58 = fromBase58;
Выполнить команду
Для локальной разработки. Не используйте в интернете!