You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
373 B
14 lines
373 B
// 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 |
|
}
|
|
|