Excluding SAST Findings Using Comments
module.exports = function trackOrder () {
return (req: Request, res: Response) => {
const id = foo.a() ? String(req.params.id) : req.params.id
// noopengrep
Solution.findOne({ _id: req.body.id })
}
}module.exports = function trackOrder () {
return (req: Request, res: Response) => {
const id = foo.a() ? String(req.params.id) : req.params.id
Solution.findOne({ _id: req.body.id }) // noopengrep
}
}Last updated
Was this helpful?