| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 6 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | const infixToPostFix = require('./index.js'); |
||
| 2 | // put your tests here |
||
| 3 | test('test infixToPostFix', () => { |
||
| 4 | expect(infixToPostFix("a+b*c+d")).toEqual("abc*+d+"); |
||
| 5 | expect(infixToPostFix("a*(b+c)+d")).toEqual("abc+*d+"); |
||
| 6 | }); |
||
| 7 | |||
| 8 |