Skip to content

Instantly share code, notes, and snippets.

@fitzgen
Created July 8, 2014 16:45
Show Gist options
  • Save fitzgen/4aa27413d68edf87b597 to your computer and use it in GitHub Desktop.
Save fitzgen/4aa27413d68edf87b597 to your computer and use it in GitHub Desktop.
var smc = new SourceMapConsumer(theSourceMapJSON);
var smg = SourceMapGenerator.fromSourceMap(smc);
smc.sources.forEach(function (s) {
smg.setSourceContent(s, somehowGetTheSourceContentsOf(s));
});
// This is your modified map.
smg.toJSON();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment