object-filters
Version:
Filter object by keys
38 lines (26 loc) • 949 B
Markdown
Did you like this module and want to contribute? We'd love your help! This way we'll be able to build a better module!!
Our targets are:
- Clean code
- Coverage by tests
### How to contribute
To make easier our jobs with contributions and revisions, before all, open/check an issue to your fixture. If we like'd, follow these steps:
1. Fork the project
2. Create a new branch to add your contribution
3. Add your fixture
4. Open a pull request
### Specs
- javascript is writed in es6
- we follow patterns from [node](https://github.com/felixge/node-style-guide) and [airbnb](https://github.com/airbnb/javascript) (rules in .eslintrc.js)
- we have a few scripts in `package.json` take a look
- `npm run lint` check if javascript passed in js pattern
- `npm t` or `npm test` will run unit tests (only if lint passed)
### Resuming
Just clone the module, then
```sh
# install dependencies with
npm i
```
```sh
# and to test run
npm t
```