aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/sourcemap.v1/README.md
blob: fb319d20f4ddb87289fe057b31c85aca7ec4e9c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Source Maps consumer for Golang [![Build Status](https://travis-ci.org/go-sourcemap/sourcemap.svg?branch=v1)](https://travis-ci.org/go-sourcemap/sourcemap)

## Installation

Install:

    go get gopkg.in/sourcemap.v1

## Quickstart

```go
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
}
```