Skip to content

Commit 5a280de

Browse files
committed
Remove buffers noAssert argument
The support for the `noAssert` argument dropped for the upcoming Node.js 10.x release. This just removes the argument and should not have any further impact.
1 parent 576f7c5 commit 5a280de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

headers/entryHeader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ module.exports = function () {
213213
// modification time (2 bytes time, 2 bytes date)
214214
data.writeUInt32LE(_time, Constants.CENTIM);
215215
// uncompressed file crc-32 value
216-
data.writeInt32LE(_crc, Constants.CENCRC, true);
216+
data.writeInt32LE(_crc, Constants.CENCRC);
217217
// compressed size
218218
data.writeUInt32LE(_compressedSize, Constants.CENSIZ);
219219
// uncompressed size

0 commit comments

Comments
 (0)