kubernetes/vendor/github.com/emicklei/go-restful/v3/jsoniter.go

// +build jsoniter

package restful

import "github.com/json-iterator/go"

var (
	json          = jsoniter.ConfigCompatibleWithStandardLibrary
	MarshalIndent = json.MarshalIndent
	NewDecoder    = json.NewDecoder
	NewEncoder    = json.NewEncoder
)