Skip to content

Instantly share code, notes, and snippets.

View Akshithpottigari's full-sized avatar
😄

Akshith Pottigari Akshithpottigari

😄
View GitHub Profile
@gynekolog
gynekolog / convertBytes.ts
Last active July 20, 2025 06:14
Typescript To Convert Bytes To MB, KB, Etc. Support for plurals.
type Plurals = Record<Intl.LDMLPluralRule, string>;
const DEFAULT_PLURALS: Plurals = {
zero: "Bytes",
one: "Byte",
two: "Bytes",
few: "Bytes",
many: "Bytes",
other: "Bytes",
};