codeforboston / codeforboston/cliff-effects
Check for `instanceof Error`
Open
beginner friendly
infrastructure
- Dominant language
- JavaScript
- Stars
- 30
- Forks
- 62
- PR merge metrics
- No merged PRs in 30d
Description
In 'src/utils/valueFixers.js' `isNumberlike()` change from
```js
if (typeof trueOrError === `object`) { //...
```
to
```js
if (typeof trueOrError instanceof Error) { //...
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.