@ethersphere/bee-js 3.3.1 → 3.3.2
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/dist/cjs/modules/debug/status.js +3 -3
- package/dist/cjs/types/debug.js +1 -0
- package/dist/cjs/utils/stream.js +2 -2
- package/dist/index.browser.min.js +1 -1
- package/dist/index.browser.min.js.LICENSE.txt +8 -0
- package/dist/index.browser.min.js.map +1 -1
- package/dist/mjs/modules/debug/status.js +3 -3
- package/dist/mjs/types/debug.js +1 -0
- package/dist/mjs/utils/stream.js +1 -1
- package/dist/types/bee-debug.d.ts +3 -3
- package/dist/types/modules/debug/stamps.d.ts +3 -3
- package/dist/types/modules/debug/status.d.ts +3 -3
- package/dist/types/types/debug.d.ts +1 -0
- package/dist/types/types/index.d.ts +1 -1
- package/dist/types/utils/stamps.d.ts +2 -2
- package/dist/types/utils/stream.d.ts +1 -1
- package/package.json +13 -13
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
/*! MIT License © Sindre Sorhus */
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* @license
|
|
5
|
+
* web-streams-polyfill v4.0.0-beta.1
|
|
6
|
+
* Copyright 2021 Mattias Buelens, Diwank Singh Tomer and other contributors.
|
|
7
|
+
* This code is released under the MIT license.
|
|
8
|
+
* SPDX-License-Identifier: MIT
|
|
9
|
+
*/
|
|
10
|
+
|
|
3
11
|
/**
|
|
4
12
|
* Function that converts Node's Readable into WHATWG ReadableStream
|
|
5
13
|
*
|