decodeAscii.d.ts 288 B

123
  1. /** This code was borrowed form cbor-x under the MIT license. */
  2. export declare const decodeAscii: (src: Uint8Array, position: number, length: number) => string | undefined;
  3. export declare const decodeAsciiMax15: (src: Uint8Array, position: number, length: number) => string | undefined;