forked from keik/merge-source-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
61 lines (49 loc) · 1.8 KB
/
index.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
var sourceMap = require('source-map'),
SourceMapConsumer = sourceMap.SourceMapConsumer,
SourceMapGenerator = sourceMap.SourceMapGenerator
module.exports = merge
/**
* Merge old source map and new source map and return merged.
* If old or new source map value is falsy, return another one as it is.
*
* @param {object|undefined} oldMap old source map object
* @param {object|undefined} newmap new source map object
* @return {object|undefined} merged source map object, or undefined when both old and new source map are undefined
*/
function merge(oldMap, newMap) {
if (!oldMap)
return newMap
if (!newMap)
return oldMap
var oldMapConsumer = new SourceMapConsumer(oldMap),
newMapConsumer = new SourceMapConsumer(newMap),
mergedMapGenerator = new SourceMapGenerator()
// iterate on new map and overwrite original position of new map with one of old map
newMapConsumer.eachMapping(function(m) {
// pass when `originalLine` is null.
// It occurs in case that the node does not have origin in original code.
if (m.originalLine == null)
return
var origPosInOldMap = oldMapConsumer.originalPositionFor({line: m.originalLine, column: m.originalColumn})
if (origPosInOldMap.source == null)
return
mergedMapGenerator.addMapping({
original: {
line: origPosInOldMap.line,
column: origPosInOldMap.column
},
generated: {
line: m.generatedLine,
column: m.generatedColumn
},
source: origPosInOldMap.source,
name: origPosInOldMap.name
})
})
var mergedMap = JSON.parse(mergedMapGenerator.toString())
mergedMap.sourcesContent = mergedMap.sources.map(function (source) {
return oldMapConsumer.sourceContentFor(source)
})
mergedMap.sourceRoot = oldMap.sourceRoot
return mergedMap
}