Socket
Socket
Sign inDemoInstall

@babel/helper-string-parser

Package Overview
Dependencies
Maintainers
4
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/helper-string-parser - npm Package Compare versions

Comparing version 8.0.0-alpha.11 to 8.0.0-alpha.12

2

lib/index.js

@@ -148,3 +148,3 @@ var _isDigit = function isDigit(code) {

const startPos = pos - 1;
const match = input.slice(startPos, pos + 2).match(/^[0-7]+/);
const match = /^[0-7]+/.exec(input.slice(startPos, pos + 2));
let octalStr = match[0];

@@ -151,0 +151,0 @@ let octal = parseInt(octalStr, 8);

{
"name": "@babel/helper-string-parser",
"version": "8.0.0-alpha.11",
"version": "8.0.0-alpha.12",
"description": "A utility package to parse strings",

@@ -5,0 +5,0 @@ "repository": {

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