From 613f90afb6aa9b082937b99686a1aeadd1b414bd Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Fri, 20 Sep 2024 07:24:22 +0200 Subject: [PATCH] helpers: Un-export convertToUnitVerbose() It's an internal implementation detail, not called from anywhere else. --- src/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.js b/src/helpers.js index 7ab9f20e7..1f41abda6 100644 --- a/src/helpers.js +++ b/src/helpers.js @@ -109,7 +109,7 @@ export function convertToUnit(input, inputUnit, outputUnit) { return convertToUnitVerbose(input, inputUnit, outputUnit).value; } -export function convertToUnitVerbose(input, inputUnit, outputUnit) { +function convertToUnitVerbose(input, inputUnit, outputUnit) { const result = { value: 0, unit: units.B.name,