@signumjs/util
Version:
Useful utilities and tools for building Signum Network applications
14 lines (13 loc) • 419 B
TypeScript
/**
* Original work Copyright (c) 2018 PoC-Consortium
* Modified work Copyright (c) 2019 Burst Apps Team
*/
/**
* Converts a string into byte array
* Inverse function {@link convertByteArrayToString}
* @param str The string to be converted
* @return {number[]} A byte array representing the string input
*
* @category conversion
*/
export declare const convertStringToByteArray: (str: string) => Uint8Array;