Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timoyuen/61d928aeaadabf01f5fa501dd16dd84b to your computer and use it in GitHub Desktop.
Save timoyuen/61d928aeaadabf01f5fa501dd16dd84b to your computer and use it in GitHub Desktop.
Remove BOM in golang
def trapBOM(fileBytes []byte) []byte{
trimmedBytes := bytes.Trim(fileBytes, "\xef\xbb\xbf")
return trimmedBytes
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment