Stuk / jszip

Create, read and edit .zip files with Javascript
https://stuk.github.io/jszip/
Other
9.77k stars 1.3k forks source link

Remove NodeBufferReader #893

Open NotWoods opened 1 year ago

NotWoods commented 1 year ago

Buffer.slice has been deprecated, and Buffer.subarray is preferred. That method has been available since Node 3.0.0.

Since Buffer is just a subtype of an Uint8Array, the Uint8ArrayReader can be used in place of the NodeBufferReader.