Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/internal/source_map/source_map.js')
-rw-r--r--lib/internal/source_map/source_map.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/internal/source_map/source_map.js b/lib/internal/source_map/source_map.js
index 35ec3ae740e..2cd70c5c944 100644
--- a/lib/internal/source_map/source_map.js
+++ b/lib/internal/source_map/source_map.js
@@ -196,15 +196,14 @@ class SourceMap {
return {};
} else if (!entry) {
return {};
- } else {
- return {
- generatedLine: entry[0],
- generatedColumn: entry[1],
- originalSource: entry[2],
- originalLine: entry[3],
- originalColumn: entry[4]
- };
}
+ return {
+ generatedLine: entry[0],
+ generatedColumn: entry[1],
+ originalSource: entry[2],
+ originalLine: entry[3],
+ originalColumn: entry[4]
+ };
}
/**