@thi.ng/transducers-binary 2.1.105 → 2.1.107
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/CHANGELOG.md +1 -1
- package/base64.d.ts +0 -3
- package/bits.d.ts +1 -1
- package/hex-dump.d.ts +0 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
package/base64.d.ts
CHANGED
|
@@ -15,9 +15,6 @@ export interface Base64EncodeOpts {
|
|
|
15
15
|
* internal buffer (size also configurable, default = 1024) to store
|
|
16
16
|
* intermediate results. Then repeatedly calls reducer to drain buffer
|
|
17
17
|
* whenever it's been filled.
|
|
18
|
-
*
|
|
19
|
-
* @param urlSafe -
|
|
20
|
-
* @param bufSize -
|
|
21
18
|
*/
|
|
22
19
|
export declare function base64Encode(): Transducer<number, string>;
|
|
23
20
|
export declare function base64Encode(opts: Partial<Base64EncodeOpts>): Transducer<number, string>;
|
package/bits.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ import type { Transducer } from "@thi.ng/transducers";
|
|
|
17
17
|
* @param wordSize -
|
|
18
18
|
* @param msbFirst -
|
|
19
19
|
*/
|
|
20
|
-
export declare function bits(
|
|
20
|
+
export declare function bits(wordSize?: number, msbFirst?: boolean): Transducer<number, number>;
|
|
21
21
|
export declare function bits(src: Iterable<number>): IterableIterator<number>;
|
|
22
22
|
export declare function bits(size: number, src: Iterable<number>): IterableIterator<number>;
|
|
23
23
|
export declare function bits(size: number, msb: boolean, src: Iterable<number>): IterableIterator<number>;
|
package/hex-dump.d.ts
CHANGED
|
@@ -24,7 +24,6 @@ import type { HexDumpOpts } from "./api.js";
|
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
26
|
* @param opts -
|
|
27
|
-
* @param src -
|
|
28
27
|
*/
|
|
29
28
|
export declare function hexDump(opts?: Partial<HexDumpOpts>): Transducer<number, string>;
|
|
30
29
|
export declare function hexDump(src: Iterable<number>): IterableIterator<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/transducers-binary",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.107",
|
|
4
4
|
"description": "Binary data related transducers & reducers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,20 +36,20 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/binary": "^3.4.
|
|
40
|
-
"@thi.ng/compose": "^2.1.
|
|
41
|
-
"@thi.ng/errors": "^2.
|
|
42
|
-
"@thi.ng/hex": "^2.3.
|
|
43
|
-
"@thi.ng/random": "^3.6.
|
|
44
|
-
"@thi.ng/strings": "^3.7.
|
|
45
|
-
"@thi.ng/transducers": "^8.9.
|
|
39
|
+
"@thi.ng/binary": "^3.4.19",
|
|
40
|
+
"@thi.ng/compose": "^2.1.69",
|
|
41
|
+
"@thi.ng/errors": "^2.5.0",
|
|
42
|
+
"@thi.ng/hex": "^2.3.40",
|
|
43
|
+
"@thi.ng/random": "^3.6.37",
|
|
44
|
+
"@thi.ng/strings": "^3.7.23",
|
|
45
|
+
"@thi.ng/transducers": "^8.9.12"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@microsoft/api-extractor": "^7.
|
|
49
|
-
"esbuild": "^0.20.
|
|
48
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
49
|
+
"esbuild": "^0.20.1",
|
|
50
50
|
"rimraf": "^5.0.5",
|
|
51
|
-
"typedoc": "^0.25.
|
|
52
|
-
"typescript": "^5.
|
|
51
|
+
"typedoc": "^0.25.12",
|
|
52
|
+
"typescript": "^5.4.2"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"array",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
],
|
|
115
115
|
"year": 2018
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
|
|
118
118
|
}
|