# bmjs-random

> A simple function to select a random argument from input parameters.

Latest version **1.0.0** (published 2017-10-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install bmjs-random
pnpm add bmjs-random
yarn add bmjs-random
bun add bmjs-random
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-10-16 |
| First published | 2017-10-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Brent McCoy |
| Maintainers | brent258 |
| Keywords | random, javascript, nodejs |

## Links

- npm: https://www.npmjs.com/package/bmjs-random
- Repository: https://github.com/brent258/bmjs-random
- Homepage: https://github.com/brent258/bmjs-random#readme
- Issues: https://github.com/brent258/bmjs-random/issues
- npm.io page: https://npm.io/package/bmjs-random

## Recent versions

- 1.0.0 (latest) — 2017-10-16

## README

# bmjs-random
A simple function to give you a random selection from input parameters.

*Example usage:*
```javascript
const random = require('bmjs-random');

let randomString = random('foo','bar','baz');
console.log(randomString); // random selection from 'foo', 'bar', 'baz'

let randomNumber = random(1,2,3);
console.log(randomNumber); // random selection from 1,2,3
```

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