Skip to content

Commit a6a5ddc

Browse files
committed
reformat with prettier v2
1 parent 748d3ae commit a6a5ddc

9 files changed

+21
-24
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"karma-cli": "latest",
6868
"karma-firefox-launcher": "latest",
6969
"karma-mocha": "latest",
70-
"karma-sauce-launcher": "latest",
70+
"karma-sauce-launcher": "^2",
7171
"karma-sourcemap-loader": "latest",
7272
"karma-webpack": "latest",
7373
"lodash": "latest",

prettier.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
module.exports = {
44
printWidth: 120,
55
trailingComma: "all",
6-
arrowParens: "always",
76
quoteProps: "preserve",
87
};

src/utils/prettyByte.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
export function prettyByte(byte: number): string {
2-
return `${byte < 0 ? "-" : ""}0x${Math.abs(byte)
3-
.toString(16)
4-
.padStart(2, "0")}`;
2+
return `${byte < 0 ? "-" : ""}0x${Math.abs(byte).toString(16).padStart(2, "0")}`;
53
}

test/ExtensionCodec.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ describe("ExtensionCodec", () => {
9191
["bar", "baz"],
9292
]);
9393
const encoded = encode([set, map], { extensionCodec });
94-
const createStream = async function*() {
94+
const createStream = async function* () {
9595
yield encoded;
9696
};
9797
assert.deepStrictEqual(await decodeAsync(createStream(), { extensionCodec }), [set, map]);
@@ -169,7 +169,7 @@ describe("ExtensionCodec", () => {
169169
const magic2 = new Magic({ foo: new Magic("inner") });
170170
const test = [magic1, magic2];
171171
const encoded = encode(test, { extensionCodec, context });
172-
const createStream = async function*() {
172+
const createStream = async function* () {
173173
yield encoded;
174174
};
175175
assert.deepStrictEqual(await decodeAsync(createStream(), { extensionCodec, context }), test);

test/codec-bigint.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ extensionCodec.register({
1818
});
1919

2020
describe("codec BigInt", () => {
21-
before(function() {
21+
before(function () {
2222
if (typeof BigInt === "undefined") {
2323
this.skip();
2424
}

test/decodeArrayStream.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe("decodeArrayStream", () => {
99
};
1010
};
1111

12-
const createStream = async function*(object: any) {
12+
const createStream = async function* (object: any) {
1313
for (const byte of encode(object)) {
1414
yield [byte];
1515
}
@@ -28,7 +28,7 @@ describe("decodeArrayStream", () => {
2828
});
2929

3030
it("decodes numbers of array (array16)", async () => {
31-
const createStream = async function*() {
31+
const createStream = async function* () {
3232
yield [0xdc, 0, 3];
3333
yield encode(1);
3434
yield encode(2);
@@ -45,7 +45,7 @@ describe("decodeArrayStream", () => {
4545
});
4646

4747
it("decodes numbers of array (array32)", async () => {
48-
const createStream = async function*() {
48+
const createStream = async function* () {
4949
yield [0xdd, 0, 0, 0, 3];
5050
yield encode(1);
5151
yield encode(2);

test/decodeAsync.test.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe("decodeAsync", () => {
77
}
88

99
it("decodes nil", async () => {
10-
const createStream = async function*() {
10+
const createStream = async function* () {
1111
yield wrapWithNoisyBuffer(0xc0); // nil
1212
};
1313

@@ -16,7 +16,7 @@ describe("decodeAsync", () => {
1616
});
1717

1818
it("decodes fixarray [nil]", async () => {
19-
const createStream = async function*() {
19+
const createStream = async function* () {
2020
yield wrapWithNoisyBuffer(0x91); // fixarray size=1
2121
yield [0xc0]; // nil
2222
};
@@ -26,7 +26,7 @@ describe("decodeAsync", () => {
2626
});
2727

2828
it("decodes fixmap {'foo': 'bar'}", async () => {
29-
const createStream = async function*() {
29+
const createStream = async function* () {
3030
yield [0x81]; // fixmap size=1
3131
yield encode("foo");
3232
yield encode("bar");
@@ -37,7 +37,7 @@ describe("decodeAsync", () => {
3737
});
3838

3939
it("decodes multi-byte integer byte-by-byte", async () => {
40-
const createStream = async function*() {
40+
const createStream = async function* () {
4141
yield [0xcd]; // uint 16
4242
yield [0x12];
4343
yield [0x34];
@@ -47,7 +47,7 @@ describe("decodeAsync", () => {
4747
});
4848

4949
it("decodes fixstr byte-by-byte", async () => {
50-
const createStream = async function*() {
50+
const createStream = async function* () {
5151
yield [0xa3]; // fixstr size=3
5252
yield [0x66]; // "f"
5353
yield [0x6f]; // "o"
@@ -58,7 +58,7 @@ describe("decodeAsync", () => {
5858
});
5959

6060
it("decodes binary byte-by-byte", async () => {
61-
const createStream = async function*() {
61+
const createStream = async function* () {
6262
yield [0xc4]; // bin 8
6363
yield [0x03]; // bin size=3
6464
yield [0x66]; // "f"
@@ -70,7 +70,7 @@ describe("decodeAsync", () => {
7070
});
7171

7272
it("decodes binary with noisy buffer", async () => {
73-
const createStream = async function*() {
73+
const createStream = async function* () {
7474
yield wrapWithNoisyBuffer(0xc5); // bin 16
7575
yield [0x00];
7676
yield [0x00]; // bin size=0
@@ -100,7 +100,7 @@ describe("decodeAsync", () => {
100100
bin0: Uint8Array.from([]),
101101
};
102102

103-
const createStream = async function*() {
103+
const createStream = async function* () {
104104
for (const byte of encode(object)) {
105105
yield [byte];
106106
}

test/decodeStream.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe("decodeStream", () => {
1212
[1, 2, 3],
1313
];
1414

15-
const createStream = async function*() {
15+
const createStream = async function* () {
1616
for (const item of items) {
1717
yield encode(item);
1818
}

test/edge-cases.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe("edge cases", () => {
3131

3232
context("try to decode a map with non-string keys (asynchronous)", () => {
3333
it("throws errors", async () => {
34-
const createStream = async function*() {
34+
const createStream = async function* () {
3535
yield [0x81]; // fixmap size=1
3636
yield encode(null);
3737
yield encode(null);
@@ -65,7 +65,7 @@ describe("edge cases", () => {
6565
});
6666

6767
it("throws errors (asynchronous)", async () => {
68-
const createStream = async function*() {
68+
const createStream = async function* () {
6969
yield [0x92]; // fixarray size=2
7070
yield encode(null);
7171
};
@@ -87,7 +87,7 @@ describe("edge cases", () => {
8787
});
8888

8989
it("throws errors (asynchronous)", async () => {
90-
const createStream = async function*() {
90+
const createStream = async function* () {
9191
yield [0x90]; // fixarray size=0
9292
yield encode(null);
9393
};
@@ -98,7 +98,7 @@ describe("edge cases", () => {
9898
});
9999

100100
it("throws errors (asynchronous)", async () => {
101-
const createStream = async function*() {
101+
const createStream = async function* () {
102102
yield [0x90, ...encode(null)]; // fixarray size=0 + nil
103103
};
104104

0 commit comments

Comments
 (0)