We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7712308 commit 8815f85Copy full SHA for 8815f85
stacktrace-gps.js
@@ -283,15 +283,15 @@
283
sourceMappingURL = base + sourceMappingURL;
284
}
285
286
- this._get(sourceMappingURL).then(function(sourceMap) {
+ return this._get(sourceMappingURL).then(function(sourceMap) {
287
if (typeof sourceMap === 'string') {
288
sourceMap = _parseJson(sourceMap.replace(/^\)\]\}'/, ''));
289
290
if (typeof sourceMap.sourceRoot === 'undefined') {
291
sourceMap.sourceRoot = base;
292
293
294
- _extractLocationInfoFromSourceMap(stackframe, sourceMap, sourceCache)
+ return _extractLocationInfoFromSourceMap(stackframe, sourceMap, sourceCache)
295
.then(resolve)['catch'](function() {
296
resolve(stackframe);
297
});
0 commit comments