Skip to content

Commit

Permalink
Update conv.go
Browse files Browse the repository at this point in the history
  • Loading branch information
kpango authored Mar 10, 2023
1 parent 1afc43d commit 60422ff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/conv/conv.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ package conv

import (
"io"
"reflect"
"strings"
"unsafe"

Expand Down Expand Up @@ -56,5 +55,5 @@ func encode(r io.Reader, t transform.Transformer) (string, error) {
if err != nil {
return "", err
}
return string(b), nil
return Btoa(b), nil
}

0 comments on commit 60422ff

Please sign in to comment.