UNPKG

astroboy

Version:

Astroboy(阿童木)is a Nodejs SFB(Separation of Front and Back ends) framework, built on koa2.

13 lines 383 B
"use strict"; /** * X-Content-Type-Options * https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Headers/X-Content-Type-Options */ const factory = function (options = 'nosniff', app) { return function cto(ctx, next) { ctx.set('X-Content-Type-Options', options); return next(); }; }; module.exports = factory; //# sourceMappingURL=astroboy-security-cto.js.map