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 1.0.2 to 1.0.3

2

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

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