Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

toml

Package Overview
Dependencies
Maintainers
1
Versions
32
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 2.0.3 to 2.0.4

7

CHANGELOG.md

@@ -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 @@ ===================

3

lib/compiler.js

@@ -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, []);

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc