We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f2bbaa + 6a71174 commit f19ad8aCopy full SHA for f19ad8a
src/inject.js
@@ -38,7 +38,7 @@ const getHumanReadableSizeObject = (bytes) => {
38
}
39
40
const K = 1024
41
- const MEASURE = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
+ const MEASURE = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
42
const i = Math.floor(Math.log(bytes) / Math.log(K))
43
44
return {
0 commit comments