Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

parsec

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parsec - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

dist/index.js

@@ -39,3 +39,3 @@ "use strict";

if (/^[a-z/"'@#$`~.]|^[+-]?[0-9]\d*(\.\d+)?$/i.test(token)) {
add.apply(undefined, _toConsumableArray(stack.length === 0 ? ["_", [token]] : [stack.pop(), token]));
add.apply(undefined, _toConsumableArray(stack.length ? [stack.pop(), token] : ["_", [token]]));
} else if (/^-[a-z]/i.test(token)) {

@@ -42,0 +42,0 @@ var _index = (token = token.slice(1)).search(/[\d\W]/i);

{
"name": "parsec",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -22,3 +22,3 @@ export default function (...aliases) {

if (/^[a-z/"'@#$`~.]|^[+-]?[0-9]\d*(\.\d+)?$/i.test(token)) {
add(...stack.length === 0 ? ["_", [token]] : [stack.pop(), token])
add(...stack.length ? [stack.pop(), token] : ["_", [token]])

@@ -25,0 +25,0 @@ } else if (/^-[a-z]/i.test(token)) {

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