🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

toml

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

toml - npm Package Compare versions

Comparing version
4.0.1
to
4.1.0
+2
-2
package.json
{
"name": "toml",
"version": "4.0.1",
"description": "TOML parser for Node.js (TOML v1.0.0 compliant)",
"version": "4.1.0",
"description": "TOML parser for Node.js (TOML v1.1.0 compliant)",
"main": "index.js",

@@ -6,0 +6,0 @@ "types": "index.d.ts",

@@ -11,9 +11,9 @@ TOML Parser for Node.js

toml-node supports [TOML v1.0.0](https://toml.io/en/v1.0.0), scoring **671/678 (99.0%)** on the official [toml-test](https://github.com/toml-lang/toml-test) compliance suite:
toml-node supports [TOML v1.1.0](https://toml.io/en/v1.1.0), scoring **673/680 (99.0%)** on the official [toml-test](https://github.com/toml-lang/toml-test) compliance suite:
| | Pass | Total | Rate |
|---|---|---|---|
| Valid tests | 204 | 205 | 99.5% |
| Invalid tests | 467 | 473 | 98.7% |
| **Total** | **671** | **678** | **99.0%** |
| Valid tests | 213 | 214 | 99.5% |
| Invalid tests | 460 | 466 | 98.7% |
| **Total** | **673** | **680** | **99.0%** |

@@ -25,11 +25,11 @@ The 7 remaining failures are inherent JavaScript platform limitations shared by all JS TOML parsers:

### v1.0.0 Feature Support
### Feature Support
- **Strings**: basic, literal, multiline, all escape sequences (`\uXXXX`, `\UXXXXXXXX`)
- **Strings**: basic, literal, multiline, all escape sequences (`\uXXXX`, `\UXXXXXXXX`, `\xHH`, `\e`)
- **Integers**: decimal, hexadecimal (`0xDEADBEEF`), octal (`0o755`), binary (`0b11010110`)
- **Floats**: decimal, scientific notation, `inf`, `-inf`, `nan`
- **Booleans**: `true`, `false`
- **Dates/Times**: offset date-time, local date-time, local date, local time
- **Dates/Times**: offset date-time, local date-time, local date, local time; seconds optional
- **Arrays**: mixed types allowed
- **Tables**: standard, inline (with dotted and quoted keys), array of tables
- **Tables**: standard, inline (with dotted/quoted keys, newlines, trailing commas), array of tables
- **Keys**: bare, quoted, dotted (`fruit.apple.color = "red"`)

@@ -36,0 +36,0 @@ - **Comments**: `# line comments`

Sorry, the diff of this file is too big to display