# more-functions.js

> Easy to use. Extra Functions for Node.js

Latest version **0.0.10-b57** (published 2020-11-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install more-functions.js
pnpm add more-functions.js
yarn add more-functions.js
bun add more-functions.js
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.10-b57 |
| Published | 2020-11-08 |
| First published | 2020-11-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | 8.x |
| Dependencies | 0 |
| Unpacked size | 5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | galaxianmonster |

## Links

- npm: https://www.npmjs.com/package/more-functions.js
- npm.io page: https://npm.io/package/more-functions.js

## Recent versions

- 0.0.10-b57 (latest) — 2020-11-08
- 0.0.10-a21 — 2020-11-08
- 0.0.10 — 2020-11-08
- 0.0.9 — 2020-11-08
- 0.0.8-fix — 2020-11-08
- 0.0.8 — 2020-11-08
- 0.0.7-stable — 2020-11-08
- 0.0.7 — 2020-11-08
- 0.0.6-fix — 2020-11-08
- 0.0.6 — 2020-11-08
- 0.0.5 — 2020-11-08
- 0.0.4 — 2020-11-08
- 0.0.3 — 2020-11-08
- 0.0.2 — 2020-11-08
- 0.0.1 — 2020-11-08

## README

# more-functions.js
-------------------------------
### A NPM that has extra functions for your Projects
Installation
```bash
npm install more-functions.js
```
Example:

```js
const functions = require('more-functions.js')
const generateColor = functions.randomColor()
console.log(generateColor.name)

```
Output:

```
BLUE
```
#### Usage:
```js
const functions = require('more-functions.js')

functions.add(9, 9)// Add values
functions.sub(9, 9)// subtract values
functions.multi(3, 3)// multiply values
functions.divide(9, 3)// divide values
functions.random(['word1', 'word2'])// randomize the words
functions.randomInt(9) // random number to the max value(randonInt(max value))
functions.randomColor // Random Color. randomColor.name for the color name or randomColor.code for the color hex code
functions.allColors // All colors list use to generate one of them

```

---
_Source: https://npm.io/package/more-functions.js · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
