fastyaml-rs 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -92,12 +92,12 @@ const multiDoc = safeDumpAll([{ a: 1 }, { b: 2 }]);
92
92
 
93
93
  ```typescript
94
94
  interface DumpOptions {
95
- sortKeys?: boolean; // Sort object keys alphabetically (default: false)
96
- allowUnicode?: boolean; // Allow unicode characters (default: true)
97
- indent?: number; // Indentation width 1-9 (default: 2)
98
- width?: number; // Line width 20-1000 (default: 80)
95
+ sortKeys?: boolean; // Sort object keys alphabetically (default: false)
96
+ allowUnicode?: boolean; // Allow unicode characters (default: true)
97
+ indent?: number; // Indentation width 1-9 (default: 2)
98
+ width?: number; // Line width 20-1000 (default: 80)
99
99
  defaultFlowStyle?: boolean; // Force flow style [...], {...} (default: null/block)
100
- explicitStart?: boolean; // Add '---' document marker (default: false)
100
+ explicitStart?: boolean; // Add '---' document marker (default: false)
101
101
  }
102
102
  ```
103
103
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastyaml-rs",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Fast YAML 1.2.2 parser, linter, and parallel processor for Node.js",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",