# pronoun.js
#### List of all English pronouns and more...
#### Some code examples and installation guide is given below:  
# Installation
Go to your terminal and type the following to get started!
```javascript
npm i pronoun
```
Import it to your project like this: 
```javascript
import { pronoun } from 'pronoun';
```
# Usage
### 1. All Pronoun's List
```javascript
pronoun();
```

### 2. Personal / Subject Pronoun List
```javascript
pronoun('personal');

// or you can do this

pronoun('subject');
```

### 3. Object Pronoun List
```javascript
pronoun('object');
```

### 4. Possessive Pronoun List
```javascript
pronoun('possessive');
```

### 5. Reflexive Pronoun List
```javascript
pronoun('reflexive');
```

### 6. Intensive Pronoun List
```javascript
pronoun('intensive');
```

### 7. Indefinite Pronoun List
```javascript
pronoun('indefinite');
```

### 8. Demonstrative Pronoun List
```javascript
pronoun('demonstrative');
```

### 9. Interrogative Pronoun List
```javascript
pronoun('interrogative');
```

### 10. Relative Pronoun List
```javascript
pronoun('relative');
```

### 11. Archaic Pronoun List
```javascript
pronoun('archaic');
```

### 12. Generate Example
```javascript
pronoun('example', 3); // second value is for the number of examples
```

### 13. wikiPage
```javascript
pronoun('wikiPage'); // returns the wikipage for pronoun
```