Skip to content

Commit ef24a04

Browse files
committed
Add space after "if" before "("
1 parent 59fab43 commit ef24a04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/source-map-consumer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ IndexedSourceMapConsumer.prototype.eachMapping =
11001100
var sourceRoot = this.sourceRoot;
11011101
mappings.map(function (mapping) {
11021102
var source = null;
1103-
if(mapping.source !== null) {
1103+
if (mapping.source !== null) {
11041104
source = this._sources.at(mapping.source);
11051105
source = util.computeSourceURL(sourceRoot, source, this._sourceMapURL);
11061106
}

0 commit comments

Comments
 (0)