Skip to content

Commit

Permalink
Update utility.ts
Browse files Browse the repository at this point in the history
Make Little Endian serialiser exportable.

Pls correct me if this is not needed
  • Loading branch information
Gudnessuche authored Dec 5, 2024
1 parent 6405983 commit 3417715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/utility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const serialiseUint32 = (n: number): Buffer => {
return buf;
};

const serialiseUint32LE = (n: number): Buffer => {
export const serialiseUint32LE = (n: number): Buffer => {
const buf = Buffer.alloc(4);
buf.writeUInt32LE(n);
return buf;
Expand Down

0 comments on commit 3417715

Please sign in to comment.