UNPKG
@easy-team/res
Version:
latest (2.0.1)
next (2.0.0)
2.0.1
2.0.0
1.0.0
A Powerful, Simple Node React Web Framework
@easy-team/res
/
app
/
middleware
/
locals.js
8 lines
(7 loc)
•
132 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
module
.
exports
=
() =>
{
return
async
function
(
ctx, next
) { ctx.
locals
.
title
=
'res'
;
await
next
(); }; };