gmongo 3.0.0 → 3.0.1

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 (3) hide show
  1. package/README.md +1 -1
  2. package/mongo.js +0 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -214,7 +214,7 @@ Mongo.singleQuery(
214
214
  <Database Name>, //String
215
215
  <Collection Name>, //String
216
216
  <QUERY> //Object
217
- );.then( result => {} )
217
+ ).then( result => {} )
218
218
  ```
219
219
 
220
220
  Example:
package/mongo.js CHANGED
@@ -330,7 +330,6 @@ const db = {
330
330
  for await (const row of results) {
331
331
  result.push(row)
332
332
  }
333
- console.log({ columnsToDecrypt, key, iv })
334
333
  resFmt(
335
334
  null,
336
335
  columnsToDecrypt && columnsToDecrypt.length > 0 && key && iv
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gmongo",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "MongoDB Connection Class",
5
5
  "main": "mongo.js",
6
6
  "scripts": {