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

treeize

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

treeize - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

6

lib/treeize.js

@@ -5,3 +5,3 @@ var _ = require('lodash');

function options = {
var globalOptions = {
delimiter: '+'

@@ -11,3 +11,3 @@ };

function expand(flatData, config) {
var localOptions = _.extend(config || {}, options);
var localOptions = _.extend(globalOptions, config || {});
var translated = [];

@@ -99,3 +99,3 @@

exports.set = function(config) {
_.extend(options, config);
_.extend(globalOptions, config);
};
{
"name": "treeize",
"version": "0.0.4",
"version": "0.0.5",
"description": "Converts tabular row data (as from SQL joins, flat JSON, etc) to deep tree graphs based on simple column naming conventions.",

@@ -5,0 +5,0 @@ "main": "./lib/treeize.js",

treeize
=======
_v0.0.4_
Converts row data (in JSON/associative array format) to object/tree structure based on column naming conventions.

@@ -7,0 +5,0 @@

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