Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "toml", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "TOML parser for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -46,2 +46,7 @@ TOML Parser for Node.js | ||
Live Demo | ||
--------- | ||
[@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/ | ||
TOML Spec Support | ||
@@ -48,0 +53,0 @@ ----------------- |
@@ -93,2 +93,10 @@ var toml = require('../'); | ||
exports.testWhitespace = function(test) { | ||
var str = "a = 1\n \n b = 2 "; | ||
test.deepEqual(toml.parse(str), { | ||
a: 1, b: 2 | ||
}); | ||
test.done(); | ||
}; | ||
exports.testErrorOnKeygroupOverride = function(test) { | ||
@@ -95,0 +103,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
96585
2526
78