Guard against not having an input sourcemap.
This commit is contained in:
parent
b2e9d5a02d
commit
714bcc0711
|
|
@ -60,7 +60,7 @@ function SourceMap(options) {
|
||||||
var orig_map = options.orig && new MOZ_SourceMap.SourceMapConsumer(options.orig);
|
var orig_map = options.orig && new MOZ_SourceMap.SourceMapConsumer(options.orig);
|
||||||
|
|
||||||
// Copy across inline sourcesContent, if any
|
// Copy across inline sourcesContent, if any
|
||||||
if (options.orig.sourcesContent) {
|
if (options.orig && options.orig.sourcesContent) {
|
||||||
var len = options.orig.sourcesContent.length;
|
var len = options.orig.sourcesContent.length;
|
||||||
for (var i = 0; i < len; i++) {
|
for (var i = 0; i < len; i++) {
|
||||||
generator.setSourceContent(options.orig.sources[i], options.orig.sourcesContent[i]);
|
generator.setSourceContent(options.orig.sources[i], options.orig.sourcesContent[i]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user