https://github.com/smelukov/gettie
JS object props coverage
https://github.com/smelukov/gettie
coverage js redux state
Last synced: 22 days ago
JSON representation
JS object props coverage
- Host: GitHub
- URL: https://github.com/smelukov/gettie
- Owner: smelukov
- License: mit
- Created: 2020-11-13T15:04:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-13T07:19:29.000Z (almost 4 years ago)
- Last Synced: 2025-04-09T19:17:07.576Z (22 days ago)
- Topics: coverage, js, redux, state
- Language: JavaScript
- Homepage:
- Size: 188 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Gettie
[](https://www.paypal.com/paypalme/smelukov)
Gettie is a JS object coverage tool.
Originally it developed to extract redux store coverage
to find out which store branches were not used till the application works.## Example
```js
const state = {
foo: 123,
bar: [456, { baz: 789 }],
quux: 123
};console.log(state.quux);
console.log(state.bar[1].baz);
```It helps to find out that branches `foo` and `bar[0]` from the `state` were not used.
It may motivate you to think about what you can do to remove the unused branches.For more information, please, see [core](packages/core) package.