system-prompts-and-models-o.../unified-ai-platform/node_modules/logform/ms.js
dopeuni444 ae726301f8 KI
KJ
2025-08-06 11:08:49 +04:00

19 lines
430 B
JavaScript

'use strict';
const format = require('./format');
const ms = require('ms');
/*
* function ms (info)
* Returns an `info` with a `ms` property. The `ms` property holds the Value
* of the time difference between two calls in milliseconds.
*/
module.exports = format(info => {
const curr = +new Date();
this.diff = curr - (this.prevTime || curr);
this.prevTime = curr;
info.ms = `+${ms(this.diff)}`;
return info;
});