cordless/vendor/gopkg.in/sourcemap.v1
Marcel Schramm 8bdb018434 Vendor dependencies and run go mod tidy 2021-12-16 12:20:39 +01:00
..
base64vlq Vendor dependencies and run go mod tidy 2021-12-16 12:20:39 +01:00
.travis.yml Vendor dependencies and run go mod tidy 2021-12-16 12:20:39 +01:00
LICENSE Vendor dependencies and run go mod tidy 2021-12-16 12:20:39 +01:00
Makefile Vendor dependencies and run go mod tidy 2021-12-16 12:20:39 +01:00
README.md Vendor dependencies and run go mod tidy 2021-12-16 12:20:39 +01:00
consumer.go Vendor dependencies and run go mod tidy 2021-12-16 12:20:39 +01:00
sourcemap.go Vendor dependencies and run go mod tidy 2021-12-16 12:20:39 +01:00

README.md

Source Maps consumer for Golang Build Status

Installation

Install:

go get gopkg.in/sourcemap.v1

Quickstart

func ExampleParse() {
	mapURL := "http://code.jquery.com/jquery-2.0.3.min.map"
	resp, err := http.Get(mapURL)
	if err != nil {
		panic(err)
	}
	defer resp.Body.Close()

	b, err := ioutil.ReadAll(resp.Body)
	if err != nil {
		panic(err)
	}

	smap, err := sourcemap.Parse(mapURL, b)
	if err != nil {
		panic(err)
	}

	line, column := 5, 6789
	file, fn, line, col, ok := smap.Source(line, column)
	fmt.Println(file, fn, line, col, ok)
	// Output: http://code.jquery.com/jquery-2.0.3.js apply 4360 27 true
}