@@ -7,7 +7,7 @@ describe("decodeAsync", () => {
7
7
}
8
8
9
9
it ( "decodes nil" , async ( ) => {
10
- const createStream = async function * ( ) {
10
+ const createStream = async function * ( ) {
11
11
yield wrapWithNoisyBuffer ( 0xc0 ) ; // nil
12
12
} ;
13
13
@@ -16,7 +16,7 @@ describe("decodeAsync", () => {
16
16
} ) ;
17
17
18
18
it ( "decodes fixarray [nil]" , async ( ) => {
19
- const createStream = async function * ( ) {
19
+ const createStream = async function * ( ) {
20
20
yield wrapWithNoisyBuffer ( 0x91 ) ; // fixarray size=1
21
21
yield [ 0xc0 ] ; // nil
22
22
} ;
@@ -26,7 +26,7 @@ describe("decodeAsync", () => {
26
26
} ) ;
27
27
28
28
it ( "decodes fixmap {'foo': 'bar'}" , async ( ) => {
29
- const createStream = async function * ( ) {
29
+ const createStream = async function * ( ) {
30
30
yield [ 0x81 ] ; // fixmap size=1
31
31
yield encode ( "foo" ) ;
32
32
yield encode ( "bar" ) ;
@@ -37,7 +37,7 @@ describe("decodeAsync", () => {
37
37
} ) ;
38
38
39
39
it ( "decodes multi-byte integer byte-by-byte" , async ( ) => {
40
- const createStream = async function * ( ) {
40
+ const createStream = async function * ( ) {
41
41
yield [ 0xcd ] ; // uint 16
42
42
yield [ 0x12 ] ;
43
43
yield [ 0x34 ] ;
@@ -47,7 +47,7 @@ describe("decodeAsync", () => {
47
47
} ) ;
48
48
49
49
it ( "decodes fixstr byte-by-byte" , async ( ) => {
50
- const createStream = async function * ( ) {
50
+ const createStream = async function * ( ) {
51
51
yield [ 0xa3 ] ; // fixstr size=3
52
52
yield [ 0x66 ] ; // "f"
53
53
yield [ 0x6f ] ; // "o"
@@ -58,7 +58,7 @@ describe("decodeAsync", () => {
58
58
} ) ;
59
59
60
60
it ( "decodes binary byte-by-byte" , async ( ) => {
61
- const createStream = async function * ( ) {
61
+ const createStream = async function * ( ) {
62
62
yield [ 0xc4 ] ; // bin 8
63
63
yield [ 0x03 ] ; // bin size=3
64
64
yield [ 0x66 ] ; // "f"
@@ -70,7 +70,7 @@ describe("decodeAsync", () => {
70
70
} ) ;
71
71
72
72
it ( "decodes binary with noisy buffer" , async ( ) => {
73
- const createStream = async function * ( ) {
73
+ const createStream = async function * ( ) {
74
74
yield wrapWithNoisyBuffer ( 0xc5 ) ; // bin 16
75
75
yield [ 0x00 ] ;
76
76
yield [ 0x00 ] ; // bin size=0
@@ -100,7 +100,7 @@ describe("decodeAsync", () => {
100
100
bin0 : Uint8Array . from ( [ ] ) ,
101
101
} ;
102
102
103
- const createStream = async function * ( ) {
103
+ const createStream = async function * ( ) {
104
104
for ( const byte of encode ( object ) ) {
105
105
yield [ byte ] ;
106
106
}
0 commit comments