golang-github-nkovacs-streamquote 1.0.0-1 source package in Ubuntu

Changelog

golang-github-nkovacs-streamquote (1.0.0-1) unstable; urgency=medium

  * Initial release (Closes: #946027)

 -- Anthony Fok <email address hidden>  Mon, 02 Dec 2019 22:09:45 -0700

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-nkovacs-streamquote_1.0.0-1.dsc 2.3 KiB 88c7eaac65c34664f90b894a20f4d14eee9b76a6e2f0c3042059db44e3150af7
golang-github-nkovacs-streamquote_1.0.0.orig.tar.gz 3.9 KiB 0ba559c6b15413dc80dc645d68377805a48c208f5dfa5b7c32f642696ca05dc9
golang-github-nkovacs-streamquote_1.0.0-1.debian.tar.xz 2.8 KiB 188244a2c6825e080b034f4b7729af4ece30ae4385e579115699cc54ce0a8499

No changes file available.

Binary packages built by this source

golang-github-nkovacs-streamquote-dev: Go package providing a streaming version of strconv.Quote

 This package provides a streaming version of strconv.Quote.
 .
 It allows you to quote the data in an io.Reader and write it out to an
 io.Writer without having to store the entire input and the entire output
 in memory.
 .
 Its primary use case is go.rice (https://github.com/GeertJohan/go.rice)
 and similar tools, which need to convert lots of files, some of them
 quite large, to go strings.
 .
     converter := streamquote.New()
     converter.Convert(inputfile, outfile)
 .
 Unlike strconv.Quote, it does not add quotes around the output.