1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-05 00:40:10 +00:00
Files
rke/vendor/sigs.k8s.io/yaml/yaml_go110.go

15 lines
373 B
Go
Raw Normal View History

2019-08-19 10:52:07 -07:00
// This file contains changes that are only compatible with go 1.10 and onwards.
// +build go1.10
package yaml
import "encoding/json"
// DisallowUnknownFields configures the JSON decoder to error out if unknown
// fields come along, instead of dropping them by default.
func DisallowUnknownFields(d *json.Decoder) *json.Decoder {
d.DisallowUnknownFields()
return d
}