prunee
Version:
A series of packages.
23 lines • 458 B
Markdown
# `PMath<class>`
`PMath.add(x,y)` - addition
`PMath.subtract(x,y)` - subtract
`PMath.multiply(x,y)` - multiply
`PMath.divide(x,y)` - divide
`PMath.power(x,y)` - power
`PMath.square(x)` - square root
# Startup
```shell
npm init && npm i prunee
```
OR TO INSTALL MATH ALONE
```shell
npm init && npm i prunee-math
```
--
```js
const {PMath} = require("prunee"), v = new PMath()
```
OR MATH ALONE
```js
const {PMath} = require("prunee-math"), v = new PMath()
```