Files
node-fastify/node_modules/@fastify/error/benchmarks/toString.js
heiye111 c74f28caa7 one
2025-09-20 21:06:53 +08:00

12 lines
373 B
JavaScript

'use strict'
const benchmark = require('benchmark')
const createError = require('..')
const FastifyError = createError('CODE', 'Not available')
new benchmark.Suite()
.add('FastifyError toString', function () { new FastifyError().toString() }, { minSamples: 100 })
.on('cycle', function onCycle (event) { console.log(String(event.target)) })
.run({ async: false })