triangle-utils 1.1.0 → 1.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triangle-utils",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "main": "Utils.js",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -263,7 +263,7 @@ export default class Utils_DynamoDB {
263
263
  }
264
264
 
265
265
  async create(table, key, attributes = {}) {
266
- const item = await this.get(table, key)
266
+ const item = await this.get(table, key, true)
267
267
  if (item !== undefined) {
268
268
  return undefined
269
269
  }