8 lines
119 B
Plaintext
8 lines
119 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: Express Middleware Function
|
|
# key: fnm
|
|
# --
|
|
|
|
exports.$1 = (req, res, next) => {
|
|
$2
|
|
}; |