1.0.3 • Published 4 years ago

int.engine v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

int.engine Welcome to int.engine, the easy int parsing tool

Requiring the module:

const  Engine  =  require('int.engine')

Smart Sum - Easy and intelligent integer parsing!

Please note, Smart Sum is the main point of this module, so be aware!

How does Smart Sum work, here is an example:

const Smart = new Engine.Engine()

If you did something along the lines of:

Smart.subtract(25,50)

It would minus 25 from 50, however, this is where Smart Sum becomes apparent, here is another example:

Smart.subtract(50,25)

This would subtract 25 from 50, and that is the main point of Smart Sum - Making sum's easier. This also works for dividing!

Algebra

int.engine uses the power of this.db to save algebra values to tables via the process - In other words you can set and get algebra variables using X,Y and Z (Lower Case)! Example usage:

new  Engine.Algebra().save("ID",x,y,z)

How would you get variables? Simple as:

new Engine.Algebra().get("ID")["x,y,z"]
//Replace the string inside [] with your key

So over all, why use int.engine - Use int.engine for easy integer parsing! I hope this helps you!