omp-cache-optimizer 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.ts +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -3345,7 +3345,7 @@ function formatTokenCount(value: number): string {
|
|
|
3345
3345
|
}
|
|
3346
3346
|
|
|
3347
3347
|
function localizeAdapterLabel(label: string): string {
|
|
3348
|
-
return label.endsWith(" cache") ? `${label.slice(0, -6)}
|
|
3348
|
+
return label.endsWith(" cache") ? `${label.slice(0, -6)} Cache` : label;
|
|
3349
3349
|
}
|
|
3350
3350
|
|
|
3351
3351
|
function formatCacheStats(adapter: CacheProviderAdapter, stats: CacheStats): string {
|
package/package.json
CHANGED