ezobjects
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -42,3 +42,3 @@ /** | ||
/** Example uses of resulting class on global scope */ | ||
/** Example new object initialized to defaults */ | ||
const a = new Person(); | ||
@@ -48,2 +48,3 @@ | ||
/** Example new object initialized using `data` object passed to constructor */ | ||
const b = new Person({ | ||
@@ -60,2 +61,3 @@ id: 1, | ||
/** Example new object initialized to defaults, then loaded with data using setter methods */ | ||
const c = new Person(); | ||
@@ -62,0 +64,0 @@ |
{ | ||
"name": "ezobjects", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Easy dynamic object generation with strict typing and set chaining", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -49,3 +49,3 @@ # EZ Objects | ||
/** Example uses of resulting class on global scope */ | ||
/** Example new object initialized to defaults */ | ||
const a = new Person(); | ||
@@ -55,2 +55,3 @@ | ||
/** Example new object initialized using `data` object passed to constructor */ | ||
const b = new Person({ | ||
@@ -67,2 +68,3 @@ id: 1, | ||
/** Example new object initialized to defaults, then loaded with data using setter methods */ | ||
const c = new Person(); | ||
@@ -69,0 +71,0 @@ |
9847
181
120