Last active
January 27, 2024 11:41
-
-
Save svierk/36f4098257b995e553928fb9cfb0de7b to your computer and use it in GitHub Desktop.
JS Code for Content Document Table LWC | formatSize
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
formatSize(size) { | |
return size && size / 1000000 >= 1 ? `${(size / 1000000).toFixed(1)} MB` : `${parseInt(size / 1000, 10)} KB`; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment