infix-postfix
Advanced tools
Comparing version 1.0.1 to 1.0.2
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; |
{ | ||
"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
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
24011
344