Bugfix: Don't cast big integers into Numbers
-
#120 Don't cast big integers into Number type
Fetcher middleware receives all params as strings. It then, tries to cast these strings into their primitive types. However, numbers larger than MAX_SAFE_INTEGER were being rounded incorrectly introducing errors(See #119). The fix is to just leave these big integers as strings and let the user convert them as needed.