# README
go-codec
utility functions to help with parsing different encoding formats and datatypes
# Functions
DecodeJSON -.
DecodeJSONFromReader - Decodes/Unmarshals the given io.Reader pointing to a JSON, into a desired object.
EncodeJSON - Encodes/Marshals the given object into JSON.
EncodeJSONToWriter - encodes/marshals a given interface to an io writer.
EncodeJSONWithIndentation - Encodes/Marshals the given object into JSON DEPRACATED.
EncodeJSONWithoutErr - Encodes/Marshals the given object into JSON but does not return an err.