etag-stream 2.1.5 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { Transform } from 'stream';
2
1
  import { createHash } from 'etag-hash';
2
+ import { Transform } from 'stream';
3
3
  class ETagStream extends Transform {
4
4
  mode;
5
5
  hash;
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const stream_1 = require("stream");
4
3
  const etag_hash_1 = require("etag-hash");
4
+ const stream_1 = require("stream");
5
5
  class ETagStream extends stream_1.Transform {
6
6
  mode;
7
7
  hash;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "etag-stream",
3
- "version": "2.1.5",
3
+ "version": "2.3.0",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "A Transform stream that calculates Etag/S3 MD5 sum. Uses the same algorithm that S3 uses to calculate the ETag.",
6
6
  "main": "index.js",
@@ -35,7 +35,7 @@
35
35
  "stream"
36
36
  ],
37
37
  "dependencies": {
38
- "etag-hash": "^2.1.5"
38
+ "etag-hash": "^2.3.0"
39
39
  },
40
- "gitHead": "748329104283d28d3bebe3cccd5e2f50598805d3"
40
+ "gitHead": "cbf678ed3d22055b7d972468ca7f822b2662e7d0"
41
41
  }