Chris Hatch
Results
2
issues of
Chris Hatch
The final commit on [PR #46 Nested Rules](https://github.com/elite-libs/rules-machine/pull/46) that switched from throwing `'BREAK'` to returning it broke the functionality. Unfortunately, someone , **cough** @chhatch **cough** **cough**, didn't add any tests...
When a rule set is executed on an object that object gets mutated. ```js const fishRhyme = ruleFactory([ { if: 'fish == "oneFish"', then: 'fish = "twoFish"' }, { if:...