I\'ve written a couple of functions that effectively replicate JSON.stringify(), converting a range of values into stringified versions. When I port my code over to JSBin an
In my case I had an extra pair of parenthesis ()
()
Instead of
export default connect( someVariable )(otherVariable)()
It had to be
export default connect( someVariable )(otherVariable)