Files
fatsify-schema/node_modules/@fastify/error/benchmarks/create.js
2025-09-22 16:00:32 +08:00

10 lines
319 B
JavaScript

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