Skip to main content
Module

std/fmt/bytes.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.167.0/fmt/bytes.ts";

Pretty print bytes.

Based on pretty-bytes. A utility for displaying file sizes for humans.

This module is browser compatible.

Examples

Example 1

import { format } from "https://deno.land/std@0.167.0/fmt/bytes.ts";

format(1337);
//=> '1.34 kB'

format(100);
//=> '100 B'

// Display with units of bits
format(1337, { bits: true });
//=> '1.34 kbit'

// Display file size differences
format(42, { signed: true });
//=> '+42 B'

// Localized output using German locale
format(1337, { locale: "de" });
//=> '1,34 kB'

Functions

Convert bytes to a human-readable string: 1337 → 1.34 kB

f
prettyBytes
deprecated

Interfaces

The options for pretty printing the byte numbers.