# sivgen

> minimal and simple random value generator.

Latest version **0.0.21** (published 2022-02-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install sivgen
pnpm add sivgen
yarn add sivgen
bun add sivgen
```

## 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.21 |
| Published | 2022-02-14 |
| First published | 2022-02-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 11.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Vedant Nandwana |
| Maintainers | vedantnandwana |

## Links

- npm: https://www.npmjs.com/package/sivgen
- Homepage: https://github.com/vedantnn71/sivgen
- Issues: https://github.com/vedantnn71/sivgen/issues
- npm.io page: https://npm.io/package/sivgen

## Recent versions

- 0.0.21 (latest) — 2022-02-14
- 0.0.2 — 2022-02-14
- 0.0.1 — 2022-02-14

## README

# Sivgen
Minimal (2.4 kb) and simple random emoji, integer and string generator written in typescript with no dependecies.

### Installation
Using npm
```bash
npm install sivgen
```
Using yarn
```bash
yarn add sivgen
```

### Usage
```javascript
import { integer, char, emoji } from "sivgen"

// Arguments - maximum number, number to exclude (optional)
const randomInteger = integer(100, 9);

// Arguments - length of string, exlcude number ( default false )
const randomString = char(2, true);

// Arguments - emoji to exclude (optional)
const randomEmoji = emoji("💡");
```

### Contributing
Currently this module is in development, contributions and pull requsts are welcome.

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