Socket
Book a DemoInstallSign in
Socket

dataz

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dataz

An abstraction for wrapping arbitrary data structures

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

Dataz

For dealing with all the dataz. Provides helpers for safely dealing with nested data structures. This is intended to be used as a base class for wrapping any arbitrary data so you can easily and safely get and set on nested data structures. This is for you if you are tired of writing lines like this:

if (obj && obj.foo && obj.foo.bar && obj.foo.bar.baz) {
	// do something with obj.foo.bar.baz
}

Now you can just do:

var d = new Dataz({
	data: {
		foo: {
			bar: {
				baz: 'fooBarBaz'
			}
		}
	}
});
d.get('foo:bar:baz:missing'); // null
d.get('foo:bar:baz'); // 'fooBarBaz'
d.get('foo:bar'); // {baz:'fooBarBaz'}
d.get('foo'); // {bar:{baz:'fooBarBaz'}}
d.get(); // {foo:{bar:{baz:'fooBarBaz'}}}

An instance of the data class also has safe setters:

var d = new Dataz();
d.set('foo:bar:baz', 'fooBarBaz');
d.get('foo:bar:baz'); // 'fooBarBaz'

There are also a few helper methods to make operating on the data easy and simple:

var d = new Dataz({
	data: {
		foo: 'bar'
	}
});

// Shallow merge
d.extend({
	baz: 'far',
});
d.get(); // {foo: 'bar', 'baz': 'far'}

// Deep merge
d.set('baz', {
	far: 'bazFar'
});
d.merge({
	foo: 'foo',
	baz: {
		far: 'far',
		bar: 'bar'
	}
});
d.get(); // {foo: 'foo', 'baz': {far: 'far', bar: 'bar'}}

// Output for json
d.toJSON(); // {foo: 'foo', baz: {far: 'far', bar: 'bar'}}
d.toJSON(true); // '{"foo":"foo","baz":{"far":"far","bar":"bar"}}'

Keywords

data

FAQs

Package last updated on 05 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts