@lowdefy/operators-js 4.0.0-rc.10 → 4.0.0-rc.12

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.
@@ -127,7 +127,7 @@ function _number({ params, location, methodName }) {
127
127
  ].includes(methodName)) {
128
128
  return runInstance({
129
129
  location,
130
- meta: meta,
130
+ meta,
131
131
  methodName,
132
132
  operator: '_number',
133
133
  params,
@@ -137,7 +137,7 @@ function _number({ params, location, methodName }) {
137
137
  return runClass({
138
138
  functions: Number,
139
139
  location,
140
- meta: meta,
140
+ meta,
141
141
  methodName,
142
142
  operator: '_number',
143
143
  params
@@ -29,7 +29,7 @@ function _operator(options) {
29
29
  return operators[operator]({
30
30
  ...options,
31
31
  location,
32
- params: params && params.params,
32
+ params: params?.params,
33
33
  methodName
34
34
  });
35
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowdefy/operators-js",
3
- "version": "4.0.0-rc.10",
3
+ "version": "4.0.0-rc.12",
4
4
  "license": "Apache-2.0",
5
5
  "description": "",
6
6
  "homepage": "https://lowdefy.com",
@@ -48,19 +48,19 @@
48
48
  "test": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js"
49
49
  },
50
50
  "dependencies": {
51
- "@lowdefy/helpers": "4.0.0-rc.10",
52
- "@lowdefy/operators": "4.0.0-rc.10"
51
+ "@lowdefy/helpers": "4.0.0-rc.12",
52
+ "@lowdefy/operators": "4.0.0-rc.12"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@jest/globals": "28.1.3",
56
56
  "@swc/cli": "0.1.62",
57
- "@swc/core": "1.3.70",
58
- "@swc/jest": "0.2.27",
57
+ "@swc/core": "1.3.92",
58
+ "@swc/jest": "0.2.29",
59
59
  "jest": "28.1.3",
60
60
  "jest-environment-jsdom": "28.1.3"
61
61
  },
62
62
  "publishConfig": {
63
63
  "access": "public"
64
64
  },
65
- "gitHead": "537af074f27770e32da9da8d48490f2eda94b406"
65
+ "gitHead": "7f3059b6778b1cb8900b1d4456681b977521d45d"
66
66
  }