This commit is contained in:
2026-01-19 01:06:45 -06:00
parent 5271688dd4
commit cbf99295da
16 changed files with 69 additions and 121 deletions

View File

@@ -226,7 +226,7 @@ function encode_toml(obj) {
// Direct properties
var section_keys = array(value)
for (var j = 0; j < section_length(keys); j++) {
for (var j = 0; j < length(section_keys); j++) {
var sk = section_keys[j]
var sv = value[sk]
if (!is_object(sv)) result.push(quote_key(sk) + ' = ' + encode_value(sv))