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

infix-postfix

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

infix-postfix - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

6

dist/InfixToPostfix.d.ts
import "./stringUtils";
import "./arrayUtils";
declare const _default: (expression: string, showSteps?: boolean) => string;
/**
* Converts infix expressions to postfix (rpn) expressions.
* @param expression the infix expression
* @param showSteps whether to print debug information to the console (default is false)
* @returns the postfix expression
*/
export default _default;
//# sourceMappingURL=InfixToPostfix.d.ts.map

@@ -76,2 +76,8 @@ "use strict";

}
/**
* Converts infix expressions to postfix (rpn) expressions.
* @param expression the infix expression
* @param showSteps whether to print debug information to the console (default is false)
* @returns the postfix expression
*/
exports.default = (expression, showSteps = false) => {

@@ -78,0 +84,0 @@ const expressionRaw = expression;

2

package.json
{
"name": "infix-postfix",
"version": "1.0.1",
"version": "1.0.2",
"description": "infix to postfix converter",

@@ -5,0 +5,0 @@ "main": "dist/index.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