summaryrefslogtreecommitdiffstats
path: root/fastify-busboy/bench/parse-params.js
diff options
context:
space:
mode:
Diffstat (limited to 'fastify-busboy/bench/parse-params.js')
-rw-r--r--fastify-busboy/bench/parse-params.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/fastify-busboy/bench/parse-params.js b/fastify-busboy/bench/parse-params.js
new file mode 100644
index 0000000..439a372
--- /dev/null
+++ b/fastify-busboy/bench/parse-params.js
@@ -0,0 +1,21 @@
+'use strict'
+
+const parseParams = require('../lib/utils/parseParams')
+const { Bench } = require('tinybench');
+const bench = new Bench();
+
+const simple = 'video/ogg'
+const complex = "'text/plain; filename*=utf-8''%c2%a3%20and%20%e2%82%ac%20rates'"
+
+bench
+ .add(simple, function () { parseParams(simple) })
+ .add(complex, function () { parseParams(complex) })
+ .run()
+ .then((tasks) => {
+ const errors = tasks.map(t => t.result?.error).filter((t) => t)
+ if (errors.length) {
+ errors.map((e) => console.error(e))
+ } else {
+ console.table(bench.table())
+ }
+ })