Skip to content

Commit 3925f8a

Browse files
committed
chore: make NodeCrc32.checkum private
1 parent ccab35c commit 3925f8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/middleware-flexible-checksums/src/getCrc32ChecksumAlgorithmFunction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Checksum } from "@smithy/types";
44
import * as zlib from "zlib";
55

66
class NodeCrc32 implements Checksum {
7-
checksum = 0;
7+
private checksum = 0;
88

99
update(data: Uint8Array) {
1010
// @ts-expect-error crc32 is defined only for Node.js >=v20.15.0 and >=v22.2.0.

0 commit comments

Comments
 (0)