Comparing version 2.0.3 to 2.0.4
@@ -0,1 +1,8 @@ | ||
2.0.4 - Mar 9 2014 | ||
================== | ||
### Bug Fiex | ||
* Fix failure on duplicate table name inside table array ([#11](https://github.com/BinaryMuse/toml-node/issues/11)) | ||
2.0.2 - Feb 23 2014 | ||
@@ -2,0 +9,0 @@ =================== |
@@ -79,2 +79,5 @@ function compile(nodes) { | ||
if (assignedPaths.indexOf(path) === -1) assignedPaths.push(path); | ||
assignedPaths = assignedPaths.filter(function(p) { | ||
return p.indexOf(path) !== 0; | ||
}); | ||
assignedPaths.push(path); | ||
@@ -81,0 +84,0 @@ context = deepRef(data, path, []); |
{ | ||
"name": "toml", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "TOML parser for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -79,2 +79,9 @@ var toml = require('../'); | ||
] | ||
}, | ||
{ | ||
"name": "orange", | ||
"physical": { | ||
"color": "orange", | ||
"shape": "round" | ||
} | ||
} | ||
@@ -81,0 +88,0 @@ ] |
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
85940
2436