Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "toml", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "TOML parser for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -49,3 +49,3 @@ TOML Parser for Node.js | ||
[@ForbesLindesay](https://github.com/ForbesLindesay) is awesome enough to have a live web-based demo of toml-node running at http://demos.forbeslindesay.co.uk/toml/ | ||
You can experiment with TOML online at http://binarymuse.github.io/toml-node/, which uses the latest version of this library. | ||
@@ -52,0 +52,0 @@ TOML Spec Support |
@@ -101,2 +101,10 @@ var toml = require('../'); | ||
exports.testSingleElementArrayWithNoTrailingComma = function(test) { | ||
var str = "a = [1]"; | ||
test.deepEqual(toml.parse(str), { | ||
a: [1] | ||
}); | ||
test.done(); | ||
}; | ||
exports.testErrorOnKeygroupOverride = function(test) { | ||
@@ -103,0 +111,0 @@ test.throws(function() { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
99086
2601