Skip to content

Commit

Permalink
Add project readme with info
Browse files Browse the repository at this point in the history
  • Loading branch information
mugan86 committed Nov 15, 2018
1 parent d058397 commit 1f06d5a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Info about library

This library will serve to generate lists of random numbers with the specified length,...

# Installation

```sh
npm install random-int-list --save
```

# Usage

## JS

```sh
var t = require('random-int-list');
console.log(t.randomIntList(5, 1, 5));
```

Result => [ 1, 3, 5, 4, 2]

## Typescript

```typescript
import { randomIntList } from 'random-int-list');
console.log(randomIntList(5, 1, 5));
```

Result => [ 1, 3, 5, 4, 2]

0 comments on commit 1f06d5a

Please sign in to comment.