An open API service indexing awesome lists of open source software.

https://github.com/knutkirkhorn/square-and-multiply

Get the square and multiply of the base, the exponent and the modulus
https://github.com/knutkirkhorn/square-and-multiply

and api math multiply nodejs square

Last synced: about 1 month ago
JSON representation

Get the square and multiply of the base, the exponent and the modulus

Awesome Lists containing this project

README

          

# square-and-multiply

> Get the square and multiply of the base, the exponent and the modulus

## Installation

```
npm install square-and-multiply
```

## Usage

```js
import squareAndMultiply from 'square-and-multiply';

console.log(squareAndMultiply(14, 27, 37));
// => 6
```

## API

### squareAndMultiply(base, exponent, modulus)

Returns the square and multiply of ```base```, ```exponent``` and ```modulus```.

## Related

- [square-and-multiply-cli](https://github.com/knutkirkhorn/square-and-multiply-cli) - CLI for this module