Skip to content

Commit

Permalink
chore: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed May 23, 2021
1 parent 42b6c7a commit 8e45667
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/url/bench/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
const native = require('url');
const qs = require('querystring');
const assert = require('uvu/assert');
Expand Down Expand Up @@ -92,7 +93,7 @@ function runner(config) {
console.log(' ✔', name);
} catch (err) {
console.log(' ✘', name, `(FAILED @ "${key}")`);
if (isVerbose) console.log(err.details);
if (isVerbose) console.log(err.details);
}
});

Expand Down
4 changes: 2 additions & 2 deletions packages/url/bench/raw.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* eslint-disable no-console */

/**
* NO NORMALIZATION ATTEMPTS MADE
* AKA: All candidates different / no validations
*/

const native = require('url');
const qs = require('querystring');
const assert = require('uvu/assert');
const { Suite } = require('benchmark');

const polka = require('../build').parse;
Expand Down

0 comments on commit 8e45667

Please sign in to comment.