ezobjects
Advanced tools
Comparing version 2.4.2 to 2.4.3
const docket = require('docket-parser'); | ||
docket.title(`EZ Objects v2.4.2`); | ||
docket.title(`EZ Objects v2.4.3`); | ||
docket.linkClass('text-success'); | ||
docket.parseFiles(['index.js', 'mysql-connection.js']); | ||
docket.generateDocs('docs'); |
{ | ||
"name": "ezobjects", | ||
"version": "2.4.2", | ||
"version": "2.4.3", | ||
"description": "Easy dynamic object generation with optional MySQL table linking", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,2 +0,2 @@ | ||
# EZ Objects v2.4.2 | ||
# EZ Objects v2.4.3 | ||
@@ -29,3 +29,3 @@ EZ Objects is a Node.js module (that can also be usefully browserify'd) that aims to save you lots of time | ||
* @param data PlainObject | ||
* @description Create a new DatabaseRecord object and initialize | ||
* @description Create a new DatabaseRecord object and initialize it | ||
* using either defaults or any provided key/value pairs in the plain | ||
@@ -40,9 +40,9 @@ * object `data`. Keys can either be equal to the name of a property, | ||
* @param data string | ||
* @description Create a new DatabaseRecord object and initialize using | ||
* either defaults or any provided key/value pairs in the JSON encoded | ||
* string `data`. Keys can either be equal to the name of a property, | ||
* or they can be have an underscore before the name of a property, as | ||
* would be the case if you were to JSON.stringify() an EZ Object. This | ||
* allows for easy transferability in cases where JSON is used as the | ||
* transfer medium. | ||
* @description Create a new DatabaseRecord object and initialize it | ||
* using either defaults or any provided key/value pairs in the JSON | ||
* encoded string `data`. Keys can either be equal to the name of a | ||
* property, or they can be have an underscore before the name of a | ||
* property, as would be the case if you were to JSON.stringify() an | ||
* EZ Object. This allows for easy transferability in cases where | ||
* JSON is used as the transfer medium. | ||
* | ||
@@ -55,4 +55,5 @@ * @signature init([data]) | ||
* | ||
* In addition, each property you define will have a single method that | ||
* is a getter and setter, and it will have the following signatures: | ||
* In addition, each property you define will have a single method | ||
* that is a getter and setter, and it will have the following | ||
* signatures: | ||
* | ||
@@ -59,0 +60,0 @@ * @signature myProperty() |
Sorry, the diff of this file is not supported yet
385129
463