UNPKG

@yhiot/utils

Version:
12 lines (11 loc) 249 B
/** * 将api执行时间返回. * @param {*} ctx * @param {*} next */ export default async function xResponseTime(ctx, next) { const start = Date.now(); await next(); const ms = Date.now() - start; ctx.set('X-Response-Time', `${ms}`); }