You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
json.Decoder() copies data from the reader into a temporary buffer. This is an extra copy that is not necessary since we have the data as a slice already.
json.NewDecoder is not optimal for our use. We should replace the following with json.Unmarshal: