New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@emmetio/math-expression

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@emmetio/math-expression - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

9

dist/math.cjs.js

@@ -337,3 +337,10 @@ 'use strict';

}
return scanner.pos !== end && !braces ? [scanner.pos, end] : null;
if (scanner.pos !== end && !braces) {
// Trim whitespace
while (isSpace(cur(scanner))) {
scanner.pos++;
}
return [scanner.pos, end];
}
return null;
}

@@ -340,0 +347,0 @@ /**

@@ -333,3 +333,10 @@ /**

}
return scanner.pos !== end && !braces ? [scanner.pos, end] : null;
if (scanner.pos !== end && !braces) {
// Trim whitespace
while (isSpace(cur(scanner))) {
scanner.pos++;
}
return [scanner.pos, end];
}
return null;
}

@@ -336,0 +343,0 @@ /**

2

package.json
{
"name": "@emmetio/math-expression",
"version": "1.0.0",
"version": "1.0.1",
"description": "Parse and evaluate simple math expressions",

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

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