Update README

I added a hint about how to import the module which could be helpful for Beginners.
This commit is contained in:
falcon027 2020-09-30 13:42:17 +02:00 committed by Mahdi Dibaiee
parent f6729ff142
commit c65d08c99e

View File

@ -15,6 +15,10 @@ npm install equations
#### Examples: #### Examples:
```javascript ```javascript
//import
const Equation = require('equations').default
// solve // solve
console.log(Equation.solve('4 * lg(4) ^ 3')); // 32 console.log(Equation.solve('4 * lg(4) ^ 3')); // 32
@ -77,7 +81,7 @@ Options:
#### registerConstant(key: String, value: Function/Number) #### registerConstant(key: String, value: Function/Number)
Registers a new constant. value can be a function (takes no arguments), or a constant number. Registers a new constant. value can be a function (takes no arguments), or a constant number.
That's right, we have named these *constants* but they actually can change, that's why we can use functions to define them. An example is the `RAND` constant which calls `Math.random`. That's right, we have named these *constants*, but they actually can change, that's why we can use functions to define them. An example is the `RAND` constant which calls `Math.random`.
Contributing Contributing
============ ============