Socket
Socket
Sign inDemoInstall

metro-source-map

Package Overview
Dependencies
Maintainers
5
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metro-source-map - npm Package Compare versions

Comparing version 0.23.0 to 0.24.0

.eslintrc

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc