Skip to content

Commit a8c580b

Browse files
committed
Lintfixed
1 parent fc62f96 commit a8c580b

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

benches/WorkerManager.bench.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default async () => {
6565
// Then with a basic transfer to, and transfer back
6666
const inputAB = bytes.buffer.slice(
6767
bytes.byteOffset,
68-
bytes.byteOffset + bytes.byteLength
68+
bytes.byteOffset + bytes.byteLength,
6969
);
7070
await workerManager.call(async (w) => {
7171
const outputAB = await w.transferBuffer(Transfer(inputAB));
@@ -74,10 +74,7 @@ export default async () => {
7474
}),
7575
b.add('Slice-Copy of 1 MiB of data', () => {
7676
// Compare this to Transfer Overhead
77-
bytes.buffer.slice(
78-
bytes.byteOffset,
79-
bytes.byteOffset + bytes.byteLength
80-
);
77+
bytes.buffer.slice(bytes.byteOffset, bytes.byteOffset + bytes.byteLength);
8178
}),
8279
b.cycle(),
8380
b.complete(),

0 commit comments

Comments
 (0)