This commit is contained in:
Yamozha
2021-04-02 02:24:13 +03:00
parent c23950b545
commit 7256d79e2c
31493 changed files with 3036630 additions and 0 deletions

4
node_modules/nocache/dist/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,4 @@
/// <reference types="node" />
import { IncomingMessage, ServerResponse } from 'http';
declare const _default: () => (_req: IncomingMessage, res: ServerResponse, next: () => void) => void;
export = _default;

10
node_modules/nocache/dist/index.js generated vendored Normal file
View File

@ -0,0 +1,10 @@
"use strict";
module.exports = function nocache() {
return function nocache(_req, res, next) {
res.setHeader('Surrogate-Control', 'no-store');
res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate, proxy-revalidate');
res.setHeader('Pragma', 'no-cache');
res.setHeader('Expires', '0');
next();
};
};