ezobjects
Advanced tools
Comparing version 0.6.5 to 0.6.6
@@ -27,3 +27,3 @@ /** | ||
/** Loop through each field in the obj */ | ||
/** Loop through each property in the obj */ | ||
obj.properties.forEach((col) => { | ||
@@ -53,3 +53,3 @@ /** Initialize 'int' and 'float' types to zero */ | ||
/** Loop through each field in the obj */ | ||
/** Loop through each property in the obj */ | ||
obj.properties.forEach((col) => { | ||
@@ -156,3 +156,3 @@ /** For 'int' type properties */ | ||
/** For all other field types */ | ||
/** For all other property types */ | ||
else { | ||
@@ -159,0 +159,0 @@ parent[obj.name].prototype[col.name] = function (arg) { |
{ | ||
"name": "ezobjects", | ||
"version": "0.6.5", | ||
"version": "0.6.6", | ||
"description": "Easy dynamic object generation with strict typing and set chaining", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,2 +0,2 @@ | ||
# EZ Objects v0.6.5 | ||
# EZ Objects v0.6.6 | ||
@@ -14,6 +14,6 @@ Under development, but completely useable. | ||
Each field in the array is an object that can have the following keys: | ||
Each property in the properties array is an object that can have the following keys: | ||
* name - The name of the field (required) | ||
* type - The type of the field (required, can be string, int, float, boolean, Array, or any other object name) | ||
* name - The name of the property (required) | ||
* type - The type of the property (required, can be string, int, float, boolean, Array, or any other object name) | ||
* default - The default initialized value (optional) | ||
@@ -20,0 +20,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14234