tessl install tessl/npm-ulid@3.0.0A universally-unique, lexicographically-sortable, identifier generator
Agent Success
Agent success rate when using this tile
78%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.34x
Baseline
Agent success rate without this tile
58%
A utility that decodes Base32-encoded strings into binary data and compares binary data to verify they match.
@generates
/**
* Decodes a Base32-encoded string into binary data.
*
* @param encoded - The Base32-encoded string to decode
* @returns The decoded binary data as a Uint8Array
*/
export function decodeBase32(encoded: string): Uint8Array;
/**
* Compares two Uint8Array instances to check if they contain identical bytes.
*
* @param a - The first Uint8Array
* @param b - The second Uint8Array
* @returns true if both arrays have the same length and identical bytes, false otherwise
*/
export function compareArrays(a: Uint8Array, b: Uint8Array): boolean;Provides Crockford Base32 encoding and decoding utilities.
@satisfied-by