cliff-effects icon indicating copy to clipboard operation
cliff-effects copied to clipboard

Check for `instanceof Error`

Open knod opened this issue 7 years ago • 0 comments

In 'src/utils/valueFixers.js' isNumberlike() change from

if (typeof trueOrError === `object`) { //...

to

if (typeof trueOrError instanceof Error) { //...

knod avatar Oct 31 '18 21:10 knod