marko 5.32.14 → 5.32.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -172,7 +172,7 @@ renderingLogic)
172
172
  // so we don't want to queue it up as a result of calling `setInput()`
173
173
  component.___ = true;
174
174
 
175
- if (customEvents !== undefined) {
175
+ if (customEvents) {
176
176
  component.aB_(customEvents, ownerComponentId);
177
177
  }
178
178
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "5.32.14",
3
+ "version": "5.32.15",
4
4
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
5
5
  "keywords": [
6
6
  "front-end",
@@ -172,7 +172,7 @@ function createRendererFunc(
172
172
  // so we don't want to queue it up as a result of calling `setInput()`
173
173
  component.___updateQueued = true;
174
174
 
175
- if (customEvents !== undefined) {
175
+ if (customEvents) {
176
176
  component.___setCustomEvents(customEvents, ownerComponentId);
177
177
  }
178
178