API reference › @evolu/common › Type › idToIdBytes
function idToIdBytes(
value: string & Brand<"Id">,
): Uint8Array<ArrayBufferLike> & Brand<"Length16"> & Brand<"IdBytes">;
Defined in: packages/common/src/Type.ts:6175
Example
import { assertEqual, createIdFromString, idToIdBytes } from "@evolu/common";
const bytes = idToIdBytes(createIdFromString("todo"));
assertEqual(bytes.length, 16);