ezobjects-mysql
Advanced tools
Comparing version 3.1.0 to 3.1.1
const docket = require(`docket-parser`); | ||
docket.title(`EZ Objects v3.1.0`); | ||
docket.title(`EZ Objects v3.1.1`); | ||
docket.linkClass(`text-success`); | ||
docket.parseFiles([`index.js`, `mysql-connection.js`]); | ||
docket.generateDocs(`docs`); |
@@ -100,3 +100,3 @@ /** | ||
enumerable: false, | ||
value: function (x) { const newArr = Array.from(this); newArr.push(x); this.splice(0, this.length); this.push(setArrayTransform(newArr, property)); return this.length; } | ||
value: function (x) { const newArr = Array.from(this); newArr.push(x); this.splice(0, this.length); this.concat(setArrayTransform(newArr, property)); return this.length; } | ||
}); | ||
@@ -106,3 +106,3 @@ | ||
enumerable: false, | ||
value: function (x) { const newArr = Array.from(this); newArr.unshift(x); this.splice(0, this.length); this.push(setArrayTransform(newArr, property)); return this.length; } | ||
value: function (x) { const newArr = Array.from(this); newArr.unshift(x); this.splice(0, this.length); this.concat(setArrayTransform(newArr, property)); return this.length; } | ||
}); | ||
@@ -112,3 +112,3 @@ | ||
enumerable: false, | ||
value: function (x, y, z) { const newArr = Array.from(this); newArr.fill(x, y, z); this.splice(0, this.length); this.push(setArrayTransform(newArr, property)); return this.length; } | ||
value: function (x, y, z) { const newArr = Array.from(this); newArr.fill(x, y, z); this.splice(0, this.length); this.concat(setArrayTransform(newArr, property)); return this.length; } | ||
}); | ||
@@ -115,0 +115,0 @@ |
{ | ||
"name": "ezobjects-mysql", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "Easy dynamic object generation with optional MySQL table linking", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,2 +0,2 @@ | ||
# EZ Objects - MySQL Edition - v3.1.0 | ||
# EZ Objects - MySQL Edition - v3.1.1 | ||
@@ -3,0 +3,0 @@ EZ Objects (MySQL Edition) is a Node.js module (that can also be usefully browserify'd) that aims to save |
Sorry, the diff of this file is not supported yet
411183