Files
simple-mail-cleaner/backend/node_modules/fast-json-stringify/test/sanitize6.test.js
2026-01-22 15:49:12 +01:00

23 lines
362 B
JavaScript

'use strict'
const t = require('tap')
const build = require('..')
const payload = '(throw "pwoned")'
const stringify = build({
type: 'object',
properties: {
'/*': { type: 'object' },
x: {
type: 'object',
properties: {
a: { type: 'string', default: `*/}${payload};{//` }
}
}
}
})
stringify({})
t.pass('no crashes')