fix: display file size as base 2 (KiB instead of KB) (#2779)

This commit is contained in:
kloon15 2023-11-02 08:47:55 +01:00 committed by GitHub
parent d0c3aeace1
commit cdcd9a313a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 4 deletions

View file

@ -0,0 +1,6 @@
import { partial } from "filesize";
/**
* Formats filesize as KiB/MiB/...
*/
export const filesize = partial({ base: 2 });