1
0
mirror of synced 2025-12-19 18:10:59 -05:00
Files
docs/middleware/req-utils.js
Kevin Heis 8a56437c93 Pretty format (#20352)
* Update prettier flow to include JS

* Run prettier

* ...run prettier
2021-07-14 14:35:01 -07:00

7 lines
132 B
JavaScript

import Hydro from '../lib/hydro.js'
export default function reqUtils(req, res, next) {
req.hydro = new Hydro()
return next()
}