Skip to content

Commit

Permalink
helpers: Un-export convertToUnitVerbose()
Browse files Browse the repository at this point in the history
It's an internal implementation detail, not called from anywhere else.
  • Loading branch information
martinpitt committed Sep 20, 2024
1 parent 2be8e7f commit 613f90a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 613f90a

Please sign in to comment.