UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

15 lines (14 loc) 405 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.passCSRF = void 0; const passCSRF = ( // eslint-disable-next-line @typescript-eslint/no-explicit-any err, req, res, next) => { if (err.code === "EBADCSRFTOKEN") { // CSRF token mismatch or missing if (req.path.startsWith("/api")) { next(); } } }; exports.passCSRF = passCSRF;