murmuration 1.1.7 → 1.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/statement.js +4 -4
  2. package/package.json +1 -1
package/bin/statement.js CHANGED
@@ -152,14 +152,14 @@ class Statement {
152
152
 
153
153
  if (objectOrArrayIsArray) {
154
154
  const array = objectOrArray,
155
- strings = array, ///
156
- columnsAndValues = this.columnsAndValuesFromStringsAndParameters(strings, parameters);
155
+ strings = array, ///
156
+ columnsAndValues = this.columnsAndValuesFromStringsAndParameters(strings, parameters);
157
157
 
158
158
  this.sql = `${this.sql} ${columnsAndValues}`;
159
159
  } else {
160
160
  const object = objectOrArray, ///
161
- values = this.valuesFromObject(object),
162
- columns = this.columnsFromObject(object)
161
+ values = this.valuesFromObject(object),
162
+ columns = this.columnsFromObject(object)
163
163
 
164
164
  this.sql = `${this.sql} (${columns}) VALUES (${values})`;
165
165
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "murmuration",
3
3
  "author": "James Smith",
4
- "version": "1.1.7",
4
+ "version": "1.1.9",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/murmuration",
7
7
  "description": "Database connections, transactions and migrations.",