pmndrs / use-cannon

👋💣 physics based hooks for @react-three/fiber
https://cannon.pmnd.rs
2.76k stars 154 forks source link

Improve compatibility with `create-react-app` by replacing `??` from the source #199

Closed javierbyte closed 3 years ago

javierbyte commented 3 years ago

Removes nullish coalescing operator ?? from code to improve build compatibility.

Given the current use cases seems like || could also be an acceptable replacement, but I went with the more accurate replacement to make sure that I'm not changing the behavior.

This PR fixes #198