Skip to content

Commit

Permalink
deploy: 981d176
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Nov 28, 2023
1 parent 9d62a2d commit 7c0d2a2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions crawl.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ <h2 id="async-event"><a class="header" href="#async-event">Async Event</a></h2>

const website = new Website(&quot;https://rsseau.fr&quot;);

const onPageEvent = (err: Error | null, value: NPage) =&gt; {
const onPageEvent = (err, value) =&gt; {
console.log(value);
};

Expand All @@ -198,7 +198,7 @@ <h2 id="background"><a class="header" href="#background">Background</a></h2>

const website = new Website(&quot;https://rsseau.fr&quot;);

const onPageEvent = (err: Error | null, value: NPage) =&gt; {
const onPageEvent = (err, value) =&gt; {
console.log(value);
};

Expand Down
4 changes: 2 additions & 2 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ <h2 id="async-event"><a class="header" href="#async-event">Async Event</a></h2>

const website = new Website(&quot;https://rsseau.fr&quot;);

const onPageEvent = (err: Error | null, value: NPage) =&gt; {
const onPageEvent = (err, value) =&gt; {
console.log(value);
};

Expand All @@ -348,7 +348,7 @@ <h2 id="background"><a class="header" href="#background">Background</a></h2>

const website = new Website(&quot;https://rsseau.fr&quot;);

const onPageEvent = (err: Error | null, value: NPage) =&gt; {
const onPageEvent = (err, value) =&gt; {
console.log(value);
};

Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit 7c0d2a2

Please sign in to comment.