
## Contributing

* Before adding any new feature or a fix make sure to open an issue first!

1. Clone the project, and install dependencies.

```bash
$ git clone https://github.com/danrevah/typeserializer.git
$ npm install
```

2. Create a new branch

```bash
$ git checkout -b feat/myFeature 
```

* OR: *

```bash
$ git checkout -b fix/myBugFix 
```

Add tests & make sure everything is running properly.

```bash
$ npm test
```

Commit, push and make a new pull request!
