@powfix/core-js 0.13.19 → 0.13.20

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.
@@ -28,12 +28,9 @@ class SequelizeUtils {
28
28
  static getNullableArrayFilter(arr) {
29
29
  return {
30
30
  [sequelize_1.Op.or]: arr.map(value => {
31
- if (value === null) {
32
- return {
33
- [sequelize_1.Op.is]: null
34
- };
35
- }
36
- return value;
31
+ return {
32
+ [value === null ? sequelize_1.Op.is : sequelize_1.Op.eq]: value
33
+ };
37
34
  })
38
35
  };
39
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powfix/core-js",
3
- "version": "0.13.19",
3
+ "version": "0.13.20",
4
4
  "description": "core package",
5
5
  "author": "Kwon Kyung-Min <powfix@gmail.com>",
6
6
  "private": false,