7 lines
224 B
JavaScript
7 lines
224 B
JavaScript
export function getReadableContextSize(contextSize) {
|
|
return contextSize.toLocaleString("en-US", {
|
|
notation: "compact",
|
|
compactDisplay: "short"
|
|
});
|
|
}
|
|
//# sourceMappingURL=getReadableContextSize.js.map
|