Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "preserves", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Experimental data serialization format", | ||
@@ -5,0 +5,0 @@ "homepage": "https://gitlab.com/preserves/preserves", |
@@ -141,2 +141,3 @@ "use strict"; | ||
return Map().withMutations((m) => { | ||
if (vs.length % 2) throw new DecodeError("Missing dictionary value"); | ||
for (let i = 0; i < vs.length; i += 2) { | ||
@@ -143,0 +144,0 @@ m.set(vs[i], vs[i+1]); |
42521
1193