UNPKG

@hyperledger/cactus-common

Version:

Universal library used by both front end and back end components of Cactus. Aims to be a developer swiss army knife.

7 lines (6 loc) 275 B
export declare class Strings { static replaceAll(source: string, searchValue: string, replaceValue: string): string; static isString(val: unknown): val is string; static isNonBlank(val: unknown): val is string; static dropNonPrintable(val: string): string; }