Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 15x 10x 10x 10x 15x 2x 1x | 'use strict'; const helmet = require('helmet'); const { promisify } = require('util'); const koaHelmet = function () { const helmetPromise = promisify(helmet.apply(null, arguments)); const middleware = (ctx, next) => { return helmetPromise(ctx.req, ctx.res).then(next); }; middleware._name = 'helmet'; return middleware; }; Object.keys(helmet).forEach(function (helmetMethod) { koaHelmet[helmetMethod] = function () { const methodPromise = promisify(helmet[helmetMethod].apply(null, arguments)); return (ctx, next) => { return methodPromise(ctx.req, ctx.res).then(next); }; }; Object.keys(helmet[helmetMethod]).forEach((methodExports) => { koaHelmet[helmetMethod][methodExports] = helmet[helmetMethod][methodExports]; }); }); module.exports = koaHelmet; |