Skip to content

Commit

Permalink
fixup! lint
Browse files Browse the repository at this point in the history
  • Loading branch information
debadree25 committed Sep 12, 2023
1 parent ace6c05 commit 2f0c075
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/webstreams/readable-read.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async function main({ n, type }) {
switch (type) {
case 'normal': {
const rs = new ReadableStream({
pull: function (controller) {
pull: function(controller) {
controller.enqueue('a');
},
});
Expand All @@ -30,7 +30,7 @@ async function main({ n, type }) {
const encode = new TextEncoder();
const rs = new ReadableStream({
type: 'bytes',
pull: function (controller) {
pull: function(controller) {
controller.enqueue(encode.encode('a'));
},
});
Expand Down

0 comments on commit 2f0c075

Please sign in to comment.