sourcemap icon indicating copy to clipboard operation
sourcemap copied to clipboard

Source maps consumer for Golang

Results 2 sourcemap issues
Sort by recently updated
recently updated
newest added

Hi there, First of all, thanks for this nice package :) I found a strange behavior using source map generated by typescript. It's look like a parsing bug but maybe...

be able to reconstruct the original file from sourcemap. something like the following: ```go smap, err := sourcemap.Parse(mapURL, b) if err != nil { panic(err) } originalFile, err := smap.Reconstruct()...