Skip to content

Instantly share code, notes, and snippets.

@svierk
Last active January 27, 2024 11:41
Show Gist options
  • Save svierk/36f4098257b995e553928fb9cfb0de7b to your computer and use it in GitHub Desktop.
Save svierk/36f4098257b995e553928fb9cfb0de7b to your computer and use it in GitHub Desktop.
JS Code for Content Document Table LWC | formatSize
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