mirror of
https://github.com/mikefarah/yq.git
synced 2026-07-07 22:35:37 +00:00
Reference: https://spec.json5.org/ Co-authored-by: Codex <codex@openai.com> Generated-with: OpenAI Codex CLI (partial) Signed-off-by: Robin H. Johnson <rjohnson@coreweave.com>
12 lines
154 B
Go
12 lines
154 B
Go
//go:build yq_nojson5
|
|
|
|
package yqlib
|
|
|
|
func NewJSON5Decoder() Decoder {
|
|
return nil
|
|
}
|
|
|
|
func NewJSON5Encoder(prefs JsonPreferences) Encoder {
|
|
return nil
|
|
}
|