First commit

This commit is contained in:
2026-01-12 13:12:46 +01:00
parent b2d9501f6d
commit a1fbd8acf5
4413 changed files with 1245183 additions and 0 deletions

32
node_modules/fastify/build/build-error-serializer.js generated vendored Normal file
View File

@@ -0,0 +1,32 @@
/* istanbul ignore file */
'use strict'
const FJS = require('fast-json-stringify')
const path = require('node:path')
const fs = require('node:fs')
const code = FJS({
type: 'object',
properties: {
statusCode: { type: 'number' },
code: { type: 'string' },
error: { type: 'string' },
message: { type: 'string' }
}
}, { mode: 'standalone' })
const file = path.join(__dirname, '..', 'lib', 'error-serializer.js')
const moduleCode = `// This file is autogenerated by build/build-error-serializer.js, do not edit
/* istanbul ignore file */
${code}
`
if (require.main === module) {
fs.writeFileSync(file, moduleCode)
console.log(`Saved ${file} file successfully`)
} else {
module.exports = {
code: moduleCode
}
}