Sha256: 347ee6c13e832cf24e4d8253c24567669f67d64356a2e5e9d576f625349d8d1c
Contents?: true
Size: 758 Bytes
Versions: 1
Compression:
Stored size: 758 Bytes
Contents
/** * Calculates the UTF8 byte length of a string. * @param {string} string String * @returns {number} Byte length */ export function length(string: string): number; /** * Reads UTF8 bytes as a string. * @param {Uint8Array} buffer Source buffer * @param {number} start Source start * @param {number} end Source end * @returns {string} String read */ export function read(buffer: Uint8Array, start: number, end: number): string; /** * Writes a string as UTF8 bytes. * @param {string} string Source string * @param {Uint8Array} buffer Destination buffer * @param {number} offset Destination offset * @returns {number} Bytes written */ export function write(string: string, buffer: Uint8Array, offset: number): number;
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
waves_lib-0.1.0 | js/node_modules/@protobufjs/utf8/index.d.ts |