mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 22:45:47 +00:00
11 lines
180 B
JavaScript
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,
|
||
|
};
|