Files
2026-01-12 13:12:46 +01:00

15 lines
249 B
JavaScript

'use strict'
const t = require('tap')
const build = require('..')
const payload = '(throw "pwoned")'
const stringify = build({
required: [`"];${payload}//`]
})
t.throws(() => {
stringify({})
}, 'Error: ""];(throw "pwoned")//" is required!')