/
alexrodionov
/
node
Обзор
Документация
Войти
/
alexrodionov
/
node
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ch15/lib/flash.js
7 строк
191 B
Ethan Brown
WIP changes after book 2e first draft.
15 июл 2019, 05:41
15 июл 2019, 05:41
dfbc0ba
Код
Авторство
О чём код?
module.exports = (req, res, next) => { // if there's a flash message, transfer // it to the context, then clear it res.locals.flash = req.session.flash delete req.session.flash next() }