6 lines
101 B
TypeScript
6 lines
101 B
TypeScript
export default async function (ctx, next) {
|
|
ctx.arr.push(9);
|
|
await next();
|
|
ctx.arr.push(10);
|
|
}
|