Comparing version 1.0.0 to 1.0.1
@@ -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)) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
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
0
15393