Source: golang-github-ssor-bom Section: devel Priority: optional Maintainer: Debian Go Packaging Team Uploaders: Aloïs Micard Build-Depends: debhelper-compat (= 13), dh-golang, golang-any Standards-Version: 4.5.1 Homepage: https://github.com/ssor/bom Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-ssor-bom Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-ssor-bom.git Testsuite: autopkgtest-pkg-go XS-Go-Import-Path: github.com/ssor/bom Rules-Requires-Root: no Package: golang-github-ssor-bom-dev Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends} Multi-Arch: foreign Description: small Go library to clean bom from byte array or reader This golang library implements a utility to clean bom from a byte array or byte reader. . Example(s): . bs := []byte{bom0, bom1, bom2, 0x11} result := CleanBom(bs) . bs := []byte{bom0, bom1, bom2, 0x11} result := NewReaderWithoutBom(bytes.NewReader(bs))