Files
METH_Transcendence/site/node_modules/stats/lib/formats/json.js
Kum1ta 57c261c689 Site
- starting pong game 3d
2024-07-30 01:08:32 +02:00

17 lines
272 B
JavaScript

/*!
* stats - formats - json
* Copyright(c) 2011 TJ Holowaychuk <tj@vision-media.ca>
* MIT Licensed
*/
/**
* Output `stats` as JSON.
*
* @param {Object} stats
* @api private
*/
module.exports = function(stats){
process.stdout.write(JSON.stringify(stats));
};