marko 5.35.27 → 5.35.29

Sign up to get free protection for your applications and to get access to all the features.
package/index.d.ts CHANGED
@@ -311,7 +311,7 @@ declare global {
311
311
  }
312
312
 
313
313
  export type AttrTag<T> = T & {
314
- [Symbol.iterator](): T;
314
+ [Symbol.iterator](): Iterator<T>;
315
315
  };
316
316
 
317
317
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "5.35.27",
3
+ "version": "5.35.29",
4
4
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
5
5
  "keywords": [
6
6
  "front-end",
@@ -66,12 +66,12 @@
66
66
  "build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
67
67
  },
68
68
  "dependencies": {
69
- "@marko/compiler": "^5.37.19",
70
- "@marko/translator-default": "^6.0.19",
69
+ "@marko/compiler": "^5.37.20",
70
+ "@marko/translator-default": "^6.0.21",
71
71
  "app-module-path": "^2.2.0",
72
72
  "argly": "^1.2.0",
73
73
  "browser-refresh-client": "1.1.4",
74
- "complain": "^1.6.0",
74
+ "complain": "^1.6.1",
75
75
  "csstype": "^3.1.3",
76
76
  "events-light": "^1.0.5",
77
77
  "listener-tracker": "^2.0.0",
@@ -1,12 +0,0 @@
1
- "use strict";module.exports = function repeatable(a, b) {
2
- if (a) {
3
- if (Array.isArray(a)) {
4
- a.push(b);
5
- return a;
6
- }
7
-
8
- return [a, b];
9
- }
10
-
11
- return b;
12
- };
@@ -1,12 +0,0 @@
1
- module.exports = function repeatable(a, b) {
2
- if (a) {
3
- if (Array.isArray(a)) {
4
- a.push(b);
5
- return a;
6
- }
7
-
8
- return [a, b];
9
- }
10
-
11
- return b;
12
- };