{"maintainers":[{"name":"ankitbug94","email":"ankitbug94@gmail.com"}],"keywords":["math","expression","evaluator","parser"],"dist-tags":{"latest":"1.2.17"},"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"description":"A flexible math expression evaluator","readme":"\r\n\r\n# math-expression-evaluator\r\nAn extremely efficient, flexible and amazing evaluator for Math expression in Javascript.([Documentation](http://redhivesoftware.github.io/math-expression-evaluator/))\r\n\r\n## Use cases\r\n|Input|Result|Explanation|\r\n|:---:|:---:| --- |\r\n|**2+3-1**|4| Addition and Subtraction operator |\r\n|**2\\*5/10**|1| Multiplication and Division operator |\r\n|**tan45** *or* **tan(45)**|1| Trigonometric Function ( tan in Degree mode) |\r\n|**tan45** *or* **tan(45)**|1.619775190543862| Trigonometric Function ( tan in Radian mode) |\r\n|**Pi1,15,n** *or* **Pi(1,15,n)**|1307674368000| Product of Sequence |\r\n|**Sigma1,15,n** *or* **Sigma(1,15,n)**|120| Sum of Sequence( also called summation)  |\r\n|**2^3**|8| Exponent( note this operator is left associative like MS Office) |\r\n|**5P3**|60| Permutaion Method to calculate all the permutaions |\r\n|**sincostan90** *or* **sin(cos(tan(90)))**|0.017261434031253| Multiple functions with or without parenthesis (both works) |\r\n\r\n### [Fiddle Yourself](http://jsbin.com/fuyowu/1/edit?html,output)\r\n\r\n## Installation\r\n### Node JS\r\n **Using npm** \r\n\r\n    npm install math-expression-evaluator\r\n\r\n### Browser\r\n **Using bower**\r\n\r\n    bower install math-expression-evaluator\r\n\r\n### How to run test\r\n\r\n    npm test\r\n\r\n## Supported symbols\r\n\r\n|Symbol|Explanation|\r\n|:---:|:---:|\r\n|**+**| Addition Operator eg. 2+3 results 5 |\r\n|**-**| Subtraction Operator eg. 2-3 results -1 |\r\n|**/**| Division operator eg 3/2 results 1.5 |\r\n|**\\***| Multiplication Operator eg. 2\\*3 results 6 |\r\n|**Mod**| Modulus Operator eg. 3 Mod 2 results 1 |\r\n|**(**| Opening Parenthesis |\r\n|**)**| Closing Parenthesis |\r\n|**Sigma**| Summation eg. Sigma(1,100,n) results 5050 |\r\n|**Pi**| Product eg. Pi(1,10,n) results 3628800 |\r\n|**n**| Variable for Summation or Product |\r\n|**pi**| Math constant pi returns 3.14 |\r\n|**e**| Math constant e returns 2.71 |\r\n|**C**| Combination operator eg. 4C2 returns 6 |\r\n|**P**| Permutation operator eg. 4P2 returns 12 |\r\n|**!**| factorial operator eg. 4! returns 24 |\r\n|**log**| logarithmic function with base 10 eg. log 1000 returns 3 |\r\n|**ln**| natural log function with base e eg. ln 2 returns .3010 |\r\n|**pow**| power function with two operator pow(2,3) returns 8 |\r\n|**^**| power operator eg. 2^3 returns 8 |\r\n|**root**| underroot function root 4 returns 2 | \r\n|**sin**| Sine function |\r\n|**cos**| Cosine function |\r\n|**tan**| Tangent function |\r\n|**asin**| Inverse Sine funtion |\r\n|**acos**| Inverse Cosine funtion |\r\n|**atan**| Inverse Tangent funtion |\r\n|**sinh**| Hyperbolic Sine funtion |\r\n|**cosh**| Hyperbolic Cosine funtion |\r\n|**tanh**| Hyperbolic Tangent funtion |\r\n|**asinh**| Inverse Hyperbolic Sine funtion |\r\n|**acosh**| Inverse Hyperbolic Cosine funtion |\r\n|**atanh**| Inverse Hyperbolic Tangent funtion |\r\n\r\n## Features  \r\n\r\n### Amazing support for Sigma and Pi  \r\nThis is a fantastic feature of this calculator that it is capable of evaluating expressions containing **Sigma and Pi**.  \r\nPassing `Sigma(1,100,n)` will evaluate to 5050 as n is summationed from 1 to 100.\r\nand Pi(1,15,n) will evaluate to 1307674368000 as n is multiplied from 1 to 15 which is equal to 15!\r\n\r\n### Parenthesis less expression\r\nIf a expression is readable by human then it is readable by this evaluator. There is no need to wrap every function inside parenthesis.\r\nFor eg. sin90 will work totally fine instead of sin(90)\r\n\r\n\r\n##Changelog\r\n\r\n### Removed lodash.indexof and used native Array.prototype.indexOf hence dropping suppports for IE8 and below. \r\nThis will reflect in next release named v1.2.16\r\n","repository":{"type":"git","url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git#readme"},"users":{"alejandrofelipe":true,"anlijudavid":true,"shoresh319":true,"rocket0191":true},"bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"license":"MIT","versions":{"1.0.1":{"name":"math-expression-evaluator","version":"1.0.1","description":"A flexible math expression evaluator","main":"src/postfix_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"6e084c5274c87f05d0e7eedd1ea2a65d303ec042","_id":"math-expression-evaluator@1.0.1","_shasum":"d724b0fe004d6873abb594c7fb6cf74f2b973ac7","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"d724b0fe004d6873abb594c7fb6cf74f2b973ac7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.0.1.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.0.2":{"name":"math-expression-evaluator","version":"1.0.2","description":"A flexible math expression evaluator","main":"src/postfix_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"9c6582dfddca8f28cad19ae6254188fff3c8642b","_id":"math-expression-evaluator@1.0.2","_shasum":"d391478fb0b9cc9cd62fa768c4259423b5736cf0","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"d391478fb0b9cc9cd62fa768c4259423b5736cf0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.0.2.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.0.3":{"name":"math-expression-evaluator","version":"1.0.3","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"b6bb51595dc1075a5ca1964503dc42a0627ca041","_id":"math-expression-evaluator@1.0.3","_shasum":"2fd928ef7740c174588075983eb3de89ce8a4074","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"2fd928ef7740c174588075983eb3de89ce8a4074","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.0.3.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.0.4":{"name":"math-expression-evaluator","version":"1.0.4","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"b1f259deb8be328526dd85cc0e2ca7c1f790de2a","_id":"math-expression-evaluator@1.0.4","_shasum":"4dc4180c104a77680a9ba97ef51c81d169062ad3","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"4dc4180c104a77680a9ba97ef51c81d169062ad3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.0.4.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.0.5":{"name":"math-expression-evaluator","version":"1.0.5","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"91a0dcc875ecef5c76d713e032a5b0b5c083b319","_id":"math-expression-evaluator@1.0.5","_shasum":"9f595aafb2ad3b758dfde0ca48bcb19e7db32d10","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"9f595aafb2ad3b758dfde0ca48bcb19e7db32d10","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.0.5.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.0.6":{"name":"math-expression-evaluator","version":"1.0.6","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"99d60122577ceef93a026773f3c28f5c92e6a441","_id":"math-expression-evaluator@1.0.6","_shasum":"d9208ca3fd20a6027baf65ab7f1b6b9a8b9a1b5f","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"d9208ca3fd20a6027baf65ab7f1b6b9a8b9a1b5f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.0.6.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.0.7":{"name":"math-expression-evaluator","version":"1.0.7","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"99d60122577ceef93a026773f3c28f5c92e6a441","_id":"math-expression-evaluator@1.0.7","_shasum":"ae3ac47afb2f891cfe7d2d51871f6ca63dfecfda","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"ae3ac47afb2f891cfe7d2d51871f6ca63dfecfda","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.0.7.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.1.0":{"name":"math-expression-evaluator","version":"1.1.0","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"2d5353d3ca5fd7bf09a8b9d8fca0b8050b1d2e1f","_id":"math-expression-evaluator@1.1.0","_shasum":"a3b76d017420043a75cbcfd3d4d8f76ee226e6ee","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"a3b76d017420043a75cbcfd3d4d8f76ee226e6ee","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.1.0.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.0":{"name":"math-expression-evaluator","version":"1.2.0","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"91dcb8bc17dd56142bdb0d8ac054944ce5ff9b92","_id":"math-expression-evaluator@1.2.0","_shasum":"462bc56a29cfbca8f5b331b074d3eebadf40fb10","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"462bc56a29cfbca8f5b331b074d3eebadf40fb10","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.0.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.1":{"name":"math-expression-evaluator","version":"1.2.1","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"8e044593d0318fa05ef7d476502f47b1c8f4f98a","_id":"math-expression-evaluator@1.2.1","_shasum":"49c89a5daac2c1acfec745e7e52dba8df8b04f43","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"49c89a5daac2c1acfec745e7e52dba8df8b04f43","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.1.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.2":{"name":"math-expression-evaluator","version":"1.2.2","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"563e3b09a9440b4b7bd409a6e0d76a4d7dea0b9a","_id":"math-expression-evaluator@1.2.2","_shasum":"4159487b4e1e806e145f6bdfc004258e57a664d3","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"4159487b4e1e806e145f6bdfc004258e57a664d3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.2.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.3":{"name":"math-expression-evaluator","version":"1.2.3","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"91a8a415e054a5fa9190ee72ecd1c90236ccd920","_id":"math-expression-evaluator@1.2.3","_shasum":"7d01c8ebebd9092486eeba2a76519f3ac533e91e","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"7d01c8ebebd9092486eeba2a76519f3ac533e91e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.3.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.4":{"name":"math-expression-evaluator","version":"1.2.4","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"ff7d43cb38f9bbe2b2483de378d89126d17609a0","_id":"math-expression-evaluator@1.2.4","_shasum":"32e780e5a62654eda306b37e819bb5f9796486b0","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"32e780e5a62654eda306b37e819bb5f9796486b0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.4.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.5":{"name":"math-expression-evaluator","version":"1.2.5","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"834b8b898f7b0757c2d8918cb85f830ca9266c61","_id":"math-expression-evaluator@1.2.5","_shasum":"34fa6e0142e414db50f6d68aa4f571e33f697448","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"34fa6e0142e414db50f6d68aa4f571e33f697448","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.5.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.7":{"name":"math-expression-evaluator","version":"1.2.7","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"c92691080d2a46447d9413a6856dd30696a584c1","_id":"math-expression-evaluator@1.2.7","_shasum":"3d9025b1a70e1232d5bb5c7724817c5e0225122e","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"3d9025b1a70e1232d5bb5c7724817c5e0225122e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.7.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.8":{"name":"math-expression-evaluator","version":"1.2.8","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"c92691080d2a46447d9413a6856dd30696a584c1","_id":"math-expression-evaluator@1.2.8","_shasum":"973c98442bcad4abe71a4322440762895f5db823","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"973c98442bcad4abe71a4322440762895f5db823","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.8.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"directories":{}},"1.2.9":{"name":"math-expression-evaluator","version":"1.2.9","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"cbb4ca283bdec5b00ba2fd348c82f6a68f4efee4","_id":"math-expression-evaluator@1.2.9","_shasum":"8c85319b23ec89a1f61d5d373351f135cb67ae3b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"dist":{"shasum":"8c85319b23ec89a1f61d5d373351f135cb67ae3b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.9.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/math-expression-evaluator-1.2.9.tgz_1465669764662_0.07058706902898848"},"directories":{}},"1.2.11":{"name":"math-expression-evaluator","version":"1.2.11","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"3d5afe2a57e3d4f6d6d4e86e69c337174b3aacc0","_id":"math-expression-evaluator@1.2.11","_shasum":"4b17cbc73a424de6043f279593f83aef685b91f9","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"4b17cbc73a424de6043f279593f83aef685b91f9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.11.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/math-expression-evaluator-1.2.11.tgz_1471864229361_0.8241103691980243"},"directories":{}},"1.2.12":{"name":"math-expression-evaluator","version":"1.2.12","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"dependencies":{"lodash.indexof":"^4.0.5"},"gitHead":"5b1e6b3b092840704a6ec3255975ca4527d8de92","_id":"math-expression-evaluator@1.2.12","_shasum":"c7636251e0d08b54215a09827eacd46eaed6e201","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"c7636251e0d08b54215a09827eacd46eaed6e201","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.12.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/math-expression-evaluator-1.2.12.tgz_1471871107693_0.3718010850716382"},"directories":{}},"1.2.13":{"name":"math-expression-evaluator","version":"1.2.13","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"dependencies":{"lodash.indexof":"^4.0.5"},"gitHead":"92c11671d135d60e66629097b6f9db6c69c184ea","_id":"math-expression-evaluator@1.2.13","_shasum":"fe76e9255a460780618c45a3ddb948be432e41c7","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"fe76e9255a460780618c45a3ddb948be432e41c7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.13.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/math-expression-evaluator-1.2.13.tgz_1471921106414_0.6540297095198184"},"directories":{}},"1.2.14":{"name":"math-expression-evaluator","version":"1.2.14","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/ankit31894/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"dependencies":{"lodash.indexof":"^4.0.5"},"gitHead":"a9c0ce91efd784ede71f13febb5ee6c9b569be4e","_id":"math-expression-evaluator@1.2.14","_shasum":"39511771ed9602405fba9affff17eb4d2a3843ab","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"ankit31894","email":"ankit31894@gmail.com"},"dist":{"shasum":"39511771ed9602405fba9affff17eb4d2a3843ab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.14.tgz"},"maintainers":[{"name":"ankit31894","email":"ankit31894@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/math-expression-evaluator-1.2.14.tgz_1472113084747_0.16513858549296856"},"directories":{}},"1.2.15":{"name":"math-expression-evaluator","version":"1.2.15","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git#readme"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"dependencies":{"lodash.indexof":"^4.0.5"},"gitHead":"592072aa9e45469a0ce0aa4fd5a5a076ff31d8f4","_id":"math-expression-evaluator@1.2.15","_shasum":"38dc5f0194c5bf5ff1c690ad4c4b64df71ac0187","_from":".","_npmVersion":"4.0.3","_nodeVersion":"4.6.2","_npmUser":{"name":"ankitbug94","email":"ankitbug94@gmail.com"},"dist":{"shasum":"38dc5f0194c5bf5ff1c690ad4c4b64df71ac0187","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.15.tgz"},"maintainers":[{"name":"ankitbug94","email":"ankitbug94@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/math-expression-evaluator-1.2.15.tgz_1484953088609_0.8097164633218199"},"directories":{}},"1.2.16":{"name":"math-expression-evaluator","version":"1.2.16","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git#readme"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"da665f21c0dbe96217df824cfe0dfc4b874d71a7","_id":"math-expression-evaluator@1.2.16","_shasum":"b357fa1ca9faefb8e48d10c14ef2bcb2d9f0a7c9","_from":".","_npmVersion":"4.1.1","_nodeVersion":"4.6.1","_npmUser":{"name":"ankitbug94","email":"ankitbug94@gmail.com"},"dist":{"shasum":"b357fa1ca9faefb8e48d10c14ef2bcb2d9f0a7c9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.16.tgz"},"maintainers":[{"name":"ankitbug94","email":"ankitbug94@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/math-expression-evaluator-1.2.16.tgz_1486021946682_0.778420809423551"},"directories":{}},"1.2.17":{"name":"math-expression-evaluator","version":"1.2.17","description":"A flexible math expression evaluator","main":"src/formula_evaluator.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git#readme"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","devDependencies":{"grunt":"^0.4.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1","mocha":"^2.2.5"},"gitHead":"4ab734ed659f1ccddde850d21b24b90e895d42fc","_id":"math-expression-evaluator@1.2.17","_shasum":"de819fdbcd84dccd8fae59c6aeb79615b9d266ac","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"ankitbug94","email":"ankitbug94@gmail.com"},"dist":{"shasum":"de819fdbcd84dccd8fae59c6aeb79615b9d266ac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz"},"maintainers":[{"name":"ankitbug94","email":"ankitbug94@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/math-expression-evaluator-1.2.17.tgz_1493387390378_0.6613296787254512"},"directories":{}}},"name":"math-expression-evaluator","time":{"modified":"2017-06-04T22:11:01.031Z","created":"2015-07-15T20:50:21.993Z","1.0.0":"2015-07-15T20:50:21.993Z","1.0.1":"2015-07-15T21:38:06.194Z","1.0.2":"2015-07-15T22:10:22.251Z","1.0.3":"2015-07-15T23:45:38.846Z","1.0.4":"2015-07-18T17:36:39.314Z","1.0.5":"2015-07-18T19:58:12.771Z","1.0.6":"2015-07-18T20:30:10.552Z","1.0.7":"2015-07-21T12:06:31.710Z","1.1.0":"2015-07-30T10:41:13.918Z","1.2.0":"2015-07-31T21:30:43.890Z","1.2.1":"2015-08-01T09:34:06.439Z","1.2.2":"2015-08-02T18:32:16.588Z","1.2.3":"2015-08-02T18:34:33.238Z","1.2.4":"2015-08-02T20:00:56.197Z","1.2.5":"2015-08-04T07:18:19.118Z","1.2.7":"2015-08-05T12:06:34.793Z","1.2.8":"2015-08-10T13:20:03.330Z","1.2.9":"2016-06-11T18:29:28.861Z","1.2.11":"2016-08-22T11:10:31.504Z","1.2.12":"2016-08-22T13:05:09.437Z","1.2.13":"2016-08-23T02:58:28.346Z","1.2.14":"2016-08-25T08:18:09.074Z","1.2.15":"2017-01-20T22:58:10.583Z","1.2.16":"2017-02-02T07:52:26.936Z","1.2.17":"2017-04-28T13:49:52.201Z"},"readmeFilename":"README.md","homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme"}