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

calculator-lib

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

calculator-lib - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "calculator-lib",
"version": "1.0.0",
"version": "1.0.1",
"description": "Calculate infix / postfix expressions",

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

@@ -40,3 +40,3 @@ # Calculator lib

```javascript
const { evaluatePostfix } = require('calculator-lib');
const evaluatePostfix = require('calculator-lib/dist/evaluate-postfix');

@@ -51,3 +51,3 @@ evaluatePostfix('1 2 + 3 +'); // -> 6

```javascript
const infixToPostfix = require('calculator-lib/infix-to-postfix');
const infixToPostfix = require('calculator-lib/dist/infix-to-postfix');

@@ -54,0 +54,0 @@ infixToPostfix('21 ^ 3 * 2 - 10'); // -> '21 3 ^ 2 * 10 -'

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