json

package
v2.3.6+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 26, 2018 License: MIT Imports: 3 Imported by: 94

Documentation

Overview

Package json minifies JSON following the specifications at http://json.org/.

Index

Examples

Constants

This section is empty.

Variables

View Source
var DefaultMinifier = &Minifier{}

DefaultMinifier is the default minifier.

Functions

func Minify

func Minify(m *minify.M, w io.Writer, r io.Reader, params map[string]string) error

Minify minifies JSON data, it reads from r and writes to w.

Example
m := minify.New()
m.AddFuncRegexp(regexp.MustCompile("[/+]json$"), Minify)

if err := m.Minify("application/json", os.Stdout, os.Stdin); err != nil {
	panic(err)
}
Output:

Types

type Minifier

type Minifier struct{}

Minifier is a JSON minifier.

func (*Minifier) Minify

func (o *Minifier) Minify(_ *minify.M, w io.Writer, r io.Reader, _ map[string]string) error

Minify minifies JSON data, it reads from r and writes to w.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL