Alexandre Bodin 607e87431a Move util out of service
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-03-06 19:20:48 +01:00

11 lines
180 B
JavaScript

'use strict';
/**
* Utils file containing file treatment utils
*/
const bytesToKbytes = bytes => Math.round((bytes / 1000) * 100) / 100;
module.exports = {
bytesToKbytes,
};