UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

8 lines (7 loc) 257 B
/** * Removes trailing occurrences of `char` from the end of `input`. * * @param input - the value to trim * @param char - the character to remove from the end */ export declare const trimEnd: (input: number | string, char: string) => number | string;