metro-source-map
Advanced tools
Comparing version 0.23.0 to 0.24.0
{ | ||
"version": "0.23.0", | ||
"version": "0.24.0", | ||
"name": "metro-source-map", | ||
@@ -4,0 +4,0 @@ "description": "🚇 Source map generator for Metro.", |
@@ -170,7 +170,7 @@ /** | ||
digit = vlq & VLQ_BASE_MASK; | ||
vlq >>>= VLQ_BASE_SHIFT; | ||
vlq = vlq >>> VLQ_BASE_SHIFT; | ||
if (vlq > 0) { | ||
// There are still more digits in this value, so we must make sure the | ||
// continuation bit is marked. | ||
digit |= VLQ_CONTINUATION_BIT; | ||
digit = digit | VLQ_CONTINUATION_BIT; | ||
} | ||
@@ -177,0 +177,0 @@ buffer[position++] = CHAR_MAP[digit]; |
@@ -59,3 +59,3 @@ /** | ||
carryOver += countLines(code); | ||
carryOver = carryOver + countLines(code); | ||
} | ||
@@ -62,0 +62,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
33464
14
1