@asla/yoursql 0.11.0 → 0.11.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.
@@ -194,7 +194,7 @@ class SqlValuesCreator {
194
194
  type = initColumnAssert(keys, keys_types);
195
195
  }
196
196
  else {
197
- keys = Object.keys(object);
197
+ keys = Object.keys(object).filter((k) => object[k] !== undefined);
198
198
  type = [];
199
199
  }
200
200
  return { keys, type };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asla/yoursql",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "types": "./dist/mod.d.ts",