Skip to content

Instantly share code, notes, and snippets.

@saurabhnanda
Created June 15, 2017 08:50
Show Gist options
  • Save saurabhnanda/6b2eaa437be9a2fff14540e0dcbbc334 to your computer and use it in GitHub Desktop.
Save saurabhnanda/6b2eaa437be9a2fff14540e0dcbbc334 to your computer and use it in GitHub Desktop.
newtype Money_ = Money_ (Reader Word8 Decimal)
instance FromJSON Money_ where
parseJSON = withNumber "a number" $
\n -> return $ Money_ $ do
precision <- ask
return $ Data.Decimal.realFracToDecimal precision n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment