js

package
v2.20.20 Latest Latest
Warning

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

Go to latest
Published: Apr 24, 2024 License: MIT Imports: 10 Imported by: 180

Documentation

Overview

Package js minifies ECMAScript 2021 following the language specification at https://tc39.es/ecma262/.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func Minify

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

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

Example
m := minify.New()
m.AddFunc("application/javascript", Minify)

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

Types

type Minifier

type Minifier struct {
	Precision    int // number of significant digits
	KeepVarNames bool

	Version int
	// contains filtered or unexported fields
}

Minifier is a JS minifier.

func (*Minifier) Minify

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

Minify minifies JS 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