eleva 1.2.17-beta → 1.2.18-beta
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.
- package/README.md +27 -15
- package/dist/eleva.cjs.js +343 -158
- package/dist/eleva.cjs.js.map +1 -1
- package/dist/eleva.d.ts +257 -106
- package/dist/eleva.esm.js +343 -158
- package/dist/eleva.esm.js.map +1 -1
- package/dist/eleva.umd.js +343 -158
- package/dist/eleva.umd.js.map +1 -1
- package/dist/eleva.umd.min.js +2 -2
- package/dist/eleva.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/core/Eleva.js +143 -75
- package/src/modules/Emitter.js +23 -7
- package/src/modules/Renderer.js +177 -81
- package/src/modules/Signal.js +10 -7
- package/src/modules/TemplateEngine.js +6 -3
- package/types/core/Eleva.d.ts +164 -68
- package/types/core/Eleva.d.ts.map +1 -1
- package/types/modules/Emitter.d.ts +26 -10
- package/types/modules/Emitter.d.ts.map +1 -1
- package/types/modules/Renderer.d.ts +56 -19
- package/types/modules/Renderer.d.ts.map +1 -1
- package/types/modules/Signal.d.ts +11 -9
- package/types/modules/Signal.d.ts.map +1 -1
- package/types/modules/TemplateEngine.d.ts +8 -5
- package/types/modules/TemplateEngine.d.ts.map +1 -1
package/src/modules/Renderer.js
CHANGED
|
@@ -1,10 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* A regular expression to match hyphenated lowercase letters.
|
|
5
|
+
* @private
|
|
6
|
+
* @type {RegExp}
|
|
7
|
+
*/
|
|
8
|
+
const CAMEL_RE = /-([a-z])/g;
|
|
9
|
+
|
|
3
10
|
/**
|
|
4
11
|
* @class 🎨 Renderer
|
|
5
|
-
* @classdesc A DOM renderer that
|
|
6
|
-
*
|
|
7
|
-
*
|
|
12
|
+
* @classdesc A high-performance DOM renderer that implements an optimized direct DOM diffing algorithm.
|
|
13
|
+
*
|
|
14
|
+
* Key features:
|
|
15
|
+
* - Single-pass diffing algorithm for efficient DOM updates
|
|
16
|
+
* - Key-based node reconciliation for optimal performance
|
|
17
|
+
* - Intelligent attribute handling for ARIA, data attributes, and boolean properties
|
|
18
|
+
* - Preservation of special Eleva-managed instances and style elements
|
|
19
|
+
* - Memory-efficient with reusable temporary containers
|
|
20
|
+
*
|
|
21
|
+
* The renderer is designed to minimize DOM operations while maintaining
|
|
22
|
+
* exact attribute synchronization and proper node identity preservation.
|
|
23
|
+
* It's particularly optimized for frequent updates and complex DOM structures.
|
|
8
24
|
*
|
|
9
25
|
* @example
|
|
10
26
|
* const renderer = new Renderer();
|
|
@@ -14,142 +30,201 @@
|
|
|
14
30
|
*/
|
|
15
31
|
export class Renderer {
|
|
16
32
|
/**
|
|
17
|
-
* Creates a new Renderer instance
|
|
33
|
+
* Creates a new Renderer instance.
|
|
18
34
|
* @public
|
|
19
35
|
*/
|
|
20
36
|
constructor() {
|
|
21
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* A temporary container to hold the new HTML content while diffing.
|
|
39
|
+
* @private
|
|
40
|
+
* @type {HTMLElement}
|
|
41
|
+
*/
|
|
22
42
|
this._tempContainer = document.createElement("div");
|
|
23
43
|
}
|
|
24
44
|
|
|
25
45
|
/**
|
|
26
|
-
* Patches the DOM of
|
|
27
|
-
* Efficiently updates the DOM by parsing new HTML into a reusable container
|
|
28
|
-
* and applying only the necessary changes.
|
|
46
|
+
* Patches the DOM of the given container with the provided HTML string.
|
|
29
47
|
*
|
|
30
48
|
* @public
|
|
31
|
-
* @param {HTMLElement} container - The container
|
|
32
|
-
* @param {string} newHtml - The new HTML
|
|
49
|
+
* @param {HTMLElement} container - The container whose DOM will be patched.
|
|
50
|
+
* @param {string} newHtml - The new HTML string.
|
|
51
|
+
* @throws {TypeError} If the container is not an HTMLElement or newHtml is not a string.
|
|
52
|
+
* @throws {Error} If the DOM patching fails.
|
|
33
53
|
* @returns {void}
|
|
34
|
-
* @throws {Error} If container is not an HTMLElement, newHtml is not a string, or patching fails.
|
|
35
54
|
*/
|
|
36
55
|
patchDOM(container, newHtml) {
|
|
37
56
|
if (!(container instanceof HTMLElement)) {
|
|
38
|
-
throw new
|
|
57
|
+
throw new TypeError("Container must be an HTMLElement");
|
|
39
58
|
}
|
|
40
59
|
if (typeof newHtml !== "string") {
|
|
41
|
-
throw new
|
|
60
|
+
throw new TypeError("newHtml must be a string");
|
|
42
61
|
}
|
|
43
62
|
|
|
44
63
|
try {
|
|
45
|
-
// Directly set new HTML, replacing any existing content
|
|
46
64
|
this._tempContainer.innerHTML = newHtml;
|
|
47
|
-
|
|
48
65
|
this._diff(container, this._tempContainer);
|
|
49
|
-
} catch {
|
|
50
|
-
throw new Error(
|
|
66
|
+
} catch (error) {
|
|
67
|
+
throw new Error(`Failed to patch DOM: ${error.message}`);
|
|
51
68
|
}
|
|
52
69
|
}
|
|
53
70
|
|
|
54
71
|
/**
|
|
55
|
-
*
|
|
56
|
-
* This method recursively compares nodes and their attributes, applying only
|
|
57
|
-
* the necessary changes to minimize DOM operations.
|
|
72
|
+
* Performs a diff between two DOM nodes and patches the old node to match the new node.
|
|
58
73
|
*
|
|
59
74
|
* @private
|
|
60
|
-
* @param {
|
|
61
|
-
* @param {
|
|
75
|
+
* @param {Node} oldParent - The old parent node to be patched.
|
|
76
|
+
* @param {Node} newParent - The new parent node to compare.
|
|
62
77
|
* @returns {void}
|
|
63
78
|
*/
|
|
64
79
|
_diff(oldParent, newParent) {
|
|
65
|
-
if (oldParent.isEqualNode(newParent)) return;
|
|
80
|
+
if (oldParent === newParent || oldParent.isEqualNode?.(newParent)) return;
|
|
66
81
|
|
|
67
|
-
const oldChildren = oldParent.childNodes;
|
|
68
|
-
const newChildren = newParent.childNodes;
|
|
69
|
-
|
|
82
|
+
const oldChildren = Array.from(oldParent.childNodes);
|
|
83
|
+
const newChildren = Array.from(newParent.childNodes);
|
|
84
|
+
let oldStartIdx = 0,
|
|
85
|
+
newStartIdx = 0;
|
|
86
|
+
let oldEndIdx = oldChildren.length - 1;
|
|
87
|
+
let newEndIdx = newChildren.length - 1;
|
|
88
|
+
let oldKeyMap = null;
|
|
70
89
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
90
|
+
while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {
|
|
91
|
+
let oldStartNode = oldChildren[oldStartIdx];
|
|
92
|
+
let newStartNode = newChildren[newStartIdx];
|
|
74
93
|
|
|
75
|
-
if (
|
|
94
|
+
if (!oldStartNode) {
|
|
95
|
+
oldStartIdx++;
|
|
76
96
|
continue;
|
|
77
97
|
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
oldParent.appendChild(newNode.cloneNode(true));
|
|
98
|
+
if (!newStartNode) {
|
|
99
|
+
newStartIdx++;
|
|
81
100
|
continue;
|
|
82
101
|
}
|
|
83
|
-
|
|
102
|
+
|
|
103
|
+
if (this._keysMatch(oldStartNode, newStartNode)) {
|
|
104
|
+
this._patchNode(oldStartNode, newStartNode);
|
|
105
|
+
oldStartIdx++;
|
|
106
|
+
newStartIdx++;
|
|
107
|
+
} else {
|
|
108
|
+
oldKeyMap ??= this._createKeyMap(oldChildren, oldStartIdx, oldEndIdx);
|
|
109
|
+
|
|
110
|
+
const newKey =
|
|
111
|
+
newStartNode.nodeType === Node.ELEMENT_NODE
|
|
112
|
+
? newStartNode.getAttribute("key")
|
|
113
|
+
: null;
|
|
114
|
+
const moveIndex = newKey ? oldKeyMap.get(newKey) : undefined;
|
|
115
|
+
const oldNodeToMove =
|
|
116
|
+
moveIndex !== undefined ? oldChildren[moveIndex] : null;
|
|
117
|
+
|
|
118
|
+
if (oldNodeToMove) {
|
|
119
|
+
this._patchNode(oldNodeToMove, newStartNode);
|
|
120
|
+
oldParent.insertBefore(oldNodeToMove, oldStartNode);
|
|
121
|
+
|
|
122
|
+
if (moveIndex !== undefined) oldChildren[moveIndex] = null;
|
|
123
|
+
} else {
|
|
124
|
+
oldParent.insertBefore(newStartNode.cloneNode(true), oldStartNode);
|
|
125
|
+
}
|
|
126
|
+
newStartIdx++;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// Cleanup
|
|
131
|
+
if (oldStartIdx > oldEndIdx) {
|
|
132
|
+
const refNode = newChildren[newEndIdx + 1]
|
|
133
|
+
? oldChildren[oldStartIdx]
|
|
134
|
+
: null;
|
|
135
|
+
for (let i = newStartIdx; i <= newEndIdx; i++) {
|
|
136
|
+
if (newChildren[i])
|
|
137
|
+
oldParent.insertBefore(newChildren[i].cloneNode(true), refNode);
|
|
138
|
+
}
|
|
139
|
+
} else if (newStartIdx > newEndIdx) {
|
|
140
|
+
for (let i = oldStartIdx; i <= oldEndIdx; i++) {
|
|
141
|
+
const node = oldChildren[i];
|
|
84
142
|
if (
|
|
85
|
-
|
|
86
|
-
|
|
143
|
+
node &&
|
|
144
|
+
!(node.nodeName === "STYLE" && node.hasAttribute("data-e-style"))
|
|
87
145
|
) {
|
|
88
|
-
|
|
146
|
+
oldParent.removeChild(node);
|
|
89
147
|
}
|
|
90
|
-
oldParent.removeChild(oldNode);
|
|
91
|
-
continue;
|
|
92
148
|
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
93
151
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
152
|
+
/**
|
|
153
|
+
* Checks if the node types match.
|
|
154
|
+
*
|
|
155
|
+
* @private
|
|
156
|
+
* @param {Node} oldNode - The old node.
|
|
157
|
+
* @param {Node} newNode - The new node.
|
|
158
|
+
* @returns {boolean} True if the nodes match, false otherwise.
|
|
159
|
+
*/
|
|
160
|
+
_keysMatch(oldNode, newNode) {
|
|
161
|
+
if (oldNode.nodeType !== Node.ELEMENT_NODE) return true;
|
|
162
|
+
const oldKey = oldNode.getAttribute("key");
|
|
163
|
+
const newKey = newNode.getAttribute("key");
|
|
164
|
+
return oldKey === newKey;
|
|
165
|
+
}
|
|
102
166
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
167
|
+
/**
|
|
168
|
+
* Patches a node.
|
|
169
|
+
*
|
|
170
|
+
* @private
|
|
171
|
+
* @param {Node} oldNode - The old node to patch.
|
|
172
|
+
* @param {Node} newNode - The new node to patch.
|
|
173
|
+
* @returns {void}
|
|
174
|
+
*/
|
|
175
|
+
_patchNode(oldNode, newNode) {
|
|
176
|
+
if (oldNode?._eleva_instance) return;
|
|
106
177
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
178
|
+
if (
|
|
179
|
+
oldNode.nodeType !== newNode.nodeType ||
|
|
180
|
+
oldNode.nodeName !== newNode.nodeName
|
|
181
|
+
) {
|
|
182
|
+
oldNode.replaceWith(newNode.cloneNode(true));
|
|
183
|
+
return;
|
|
184
|
+
}
|
|
111
185
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
186
|
+
if (oldNode.nodeType === Node.ELEMENT_NODE) {
|
|
187
|
+
const oldEl = oldNode;
|
|
188
|
+
const newEl = newNode;
|
|
189
|
+
this._updateAttributes(oldEl, newEl);
|
|
190
|
+
this._diff(oldEl, newEl);
|
|
191
|
+
} else if (
|
|
192
|
+
oldNode.nodeType === Node.TEXT_NODE &&
|
|
193
|
+
oldNode.nodeValue !== newNode.nodeValue
|
|
194
|
+
) {
|
|
195
|
+
oldNode.nodeValue = newNode.nodeValue;
|
|
120
196
|
}
|
|
121
197
|
}
|
|
122
198
|
|
|
123
199
|
/**
|
|
124
|
-
* Updates the attributes of an element
|
|
125
|
-
* Handles special cases for ARIA attributes, data attributes, and boolean properties.
|
|
200
|
+
* Updates the attributes of an element.
|
|
126
201
|
*
|
|
127
202
|
* @private
|
|
128
|
-
* @param {HTMLElement} oldEl - The element to update.
|
|
129
|
-
* @param {HTMLElement} newEl - The element
|
|
203
|
+
* @param {HTMLElement} oldEl - The old element to update.
|
|
204
|
+
* @param {HTMLElement} newEl - The new element to update.
|
|
130
205
|
* @returns {void}
|
|
131
206
|
*/
|
|
132
207
|
_updateAttributes(oldEl, newEl) {
|
|
133
208
|
const oldAttrs = oldEl.attributes;
|
|
134
209
|
const newAttrs = newEl.attributes;
|
|
135
210
|
|
|
136
|
-
//
|
|
137
|
-
for (
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
if (oldEl.getAttribute(name) === value) continue;
|
|
211
|
+
// Single pass for new/updated attributes
|
|
212
|
+
for (let i = 0; i < newAttrs.length; i++) {
|
|
213
|
+
const { name, value } = newAttrs[i];
|
|
214
|
+
if (name[0] === "@" || oldEl.getAttribute(name) === value) continue;
|
|
141
215
|
|
|
142
216
|
oldEl.setAttribute(name, value);
|
|
143
217
|
|
|
144
|
-
if (name
|
|
145
|
-
const
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
oldEl[prop] = value;
|
|
149
|
-
} else if (name.startsWith("data-")) {
|
|
218
|
+
if (name[0] === "a" && name[4] === "-") {
|
|
219
|
+
const s = name.slice(5);
|
|
220
|
+
oldEl["aria" + s.replace(CAMEL_RE, (_, l) => l.toUpperCase())] = value;
|
|
221
|
+
} else if (name[0] === "d" && name[3] === "-") {
|
|
150
222
|
oldEl.dataset[name.slice(5)] = value;
|
|
151
223
|
} else {
|
|
152
|
-
const prop = name.
|
|
224
|
+
const prop = name.includes("-")
|
|
225
|
+
? name.replace(CAMEL_RE, (_, l) => l.toUpperCase())
|
|
226
|
+
: name;
|
|
227
|
+
|
|
153
228
|
if (prop in oldEl) {
|
|
154
229
|
const descriptor = Object.getOwnPropertyDescriptor(
|
|
155
230
|
Object.getPrototypeOf(oldEl),
|
|
@@ -159,7 +234,6 @@ export class Renderer {
|
|
|
159
234
|
typeof oldEl[prop] === "boolean" ||
|
|
160
235
|
(descriptor?.get &&
|
|
161
236
|
typeof descriptor.get.call(oldEl) === "boolean");
|
|
162
|
-
|
|
163
237
|
if (isBoolean) {
|
|
164
238
|
oldEl[prop] =
|
|
165
239
|
value !== "false" &&
|
|
@@ -171,11 +245,33 @@ export class Renderer {
|
|
|
171
245
|
}
|
|
172
246
|
}
|
|
173
247
|
|
|
174
|
-
// Remove
|
|
175
|
-
for (
|
|
248
|
+
// Remove any attributes no longer present
|
|
249
|
+
for (let i = oldAttrs.length - 1; i >= 0; i--) {
|
|
250
|
+
const name = oldAttrs[i].name;
|
|
176
251
|
if (!newEl.hasAttribute(name)) {
|
|
177
252
|
oldEl.removeAttribute(name);
|
|
178
253
|
}
|
|
179
254
|
}
|
|
180
255
|
}
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Creates a key map for the children of a parent node.
|
|
259
|
+
*
|
|
260
|
+
* @private
|
|
261
|
+
* @param {Array<Node>} children - The children of the parent node.
|
|
262
|
+
* @param {number} start - The start index of the children.
|
|
263
|
+
* @param {number} end - The end index of the children.
|
|
264
|
+
* @returns {Map<string, number>} A map of key to child index.
|
|
265
|
+
*/
|
|
266
|
+
_createKeyMap(children, start, end) {
|
|
267
|
+
const map = new Map();
|
|
268
|
+
for (let i = start; i <= end; i++) {
|
|
269
|
+
const child = children[i];
|
|
270
|
+
if (child?.nodeType === Node.ELEMENT_NODE) {
|
|
271
|
+
const key = child.getAttribute("key");
|
|
272
|
+
if (key) map.set(key, i);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
return map;
|
|
276
|
+
}
|
|
181
277
|
}
|
package/src/modules/Signal.js
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
* @classdesc A reactive data holder that enables fine-grained reactivity in the Eleva framework.
|
|
6
6
|
* Signals notify registered watchers when their value changes, enabling efficient DOM updates
|
|
7
7
|
* through targeted patching rather than full re-renders.
|
|
8
|
+
* Updates are batched using microtasks to prevent multiple synchronous notifications.
|
|
9
|
+
* The class is generic, allowing type-safe handling of any value type T.
|
|
8
10
|
*
|
|
9
11
|
* @example
|
|
10
12
|
* const count = new Signal(0);
|
|
@@ -17,12 +19,12 @@ export class Signal {
|
|
|
17
19
|
* Creates a new Signal instance with the specified initial value.
|
|
18
20
|
*
|
|
19
21
|
* @public
|
|
20
|
-
* @param {
|
|
22
|
+
* @param {T} value - The initial value of the signal.
|
|
21
23
|
*/
|
|
22
24
|
constructor(value) {
|
|
23
|
-
/** @private {T} Internal storage for the signal's current value
|
|
25
|
+
/** @private {T} Internal storage for the signal's current value */
|
|
24
26
|
this._value = value;
|
|
25
|
-
/** @private {Set<
|
|
27
|
+
/** @private {Set<(value: T) => void>} Collection of callback functions to be notified when value changes */
|
|
26
28
|
this._watchers = new Set();
|
|
27
29
|
/** @private {boolean} Flag to prevent multiple synchronous watcher notifications and batch updates into microtasks */
|
|
28
30
|
this._pending = false;
|
|
@@ -32,7 +34,7 @@ export class Signal {
|
|
|
32
34
|
* Gets the current value of the signal.
|
|
33
35
|
*
|
|
34
36
|
* @public
|
|
35
|
-
* @returns {T} The current value
|
|
37
|
+
* @returns {T} The current value.
|
|
36
38
|
*/
|
|
37
39
|
get value() {
|
|
38
40
|
return this._value;
|
|
@@ -43,7 +45,7 @@ export class Signal {
|
|
|
43
45
|
* The notification is batched using microtasks to prevent multiple synchronous updates.
|
|
44
46
|
*
|
|
45
47
|
* @public
|
|
46
|
-
* @param {T} newVal - The new value to set
|
|
48
|
+
* @param {T} newVal - The new value to set.
|
|
47
49
|
* @returns {void}
|
|
48
50
|
*/
|
|
49
51
|
set value(newVal) {
|
|
@@ -58,8 +60,8 @@ export class Signal {
|
|
|
58
60
|
* The watcher will receive the new value as its argument.
|
|
59
61
|
*
|
|
60
62
|
* @public
|
|
61
|
-
* @param {
|
|
62
|
-
* @returns {
|
|
63
|
+
* @param {(value: T) => void} fn - The callback function to invoke on value change.
|
|
64
|
+
* @returns {() => boolean} A function to unsubscribe the watcher.
|
|
63
65
|
* @example
|
|
64
66
|
* const unsubscribe = signal.watch((value) => console.log(value));
|
|
65
67
|
* // Later...
|
|
@@ -83,6 +85,7 @@ export class Signal {
|
|
|
83
85
|
|
|
84
86
|
this._pending = true;
|
|
85
87
|
queueMicrotask(() => {
|
|
88
|
+
/** @type {(fn: (value: T) => void) => void} */
|
|
86
89
|
this._watchers.forEach((fn) => fn(this._value));
|
|
87
90
|
this._pending = false;
|
|
88
91
|
});
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
export class TemplateEngine {
|
|
15
15
|
/**
|
|
16
16
|
* @private {RegExp} Regular expression for matching template expressions in the format {{ expression }}
|
|
17
|
+
* @type {RegExp}
|
|
17
18
|
*/
|
|
18
19
|
static expressionPattern = /\{\{\s*(.*?)\s*\}\}/g;
|
|
19
20
|
|
|
@@ -24,7 +25,7 @@ export class TemplateEngine {
|
|
|
24
25
|
* @public
|
|
25
26
|
* @static
|
|
26
27
|
* @param {string} template - The template string to parse.
|
|
27
|
-
* @param {
|
|
28
|
+
* @param {Record<string, unknown>} data - The data context for evaluating expressions.
|
|
28
29
|
* @returns {string} The parsed template with expressions replaced by their values.
|
|
29
30
|
* @example
|
|
30
31
|
* const result = TemplateEngine.parse("{{user.name}} is {{user.age}} years old", {
|
|
@@ -41,12 +42,14 @@ export class TemplateEngine {
|
|
|
41
42
|
/**
|
|
42
43
|
* Evaluates an expression in the context of the provided data object.
|
|
43
44
|
* Note: This does not provide a true sandbox and evaluated expressions may access global scope.
|
|
45
|
+
* The use of the `with` statement is necessary for expression evaluation but has security implications.
|
|
46
|
+
* Expressions should be carefully validated before evaluation.
|
|
44
47
|
*
|
|
45
48
|
* @public
|
|
46
49
|
* @static
|
|
47
50
|
* @param {string} expression - The expression to evaluate.
|
|
48
|
-
* @param {
|
|
49
|
-
* @returns {
|
|
51
|
+
* @param {Record<string, unknown>} data - The data context for evaluation.
|
|
52
|
+
* @returns {unknown} The result of the evaluation, or an empty string if evaluation fails.
|
|
50
53
|
* @example
|
|
51
54
|
* const result = TemplateEngine.evaluate("user.name", { user: { name: "John" } }); // Returns: "John"
|
|
52
55
|
* const age = TemplateEngine.evaluate("user.age", { user: { age: 30 } }); // Returns: 30
|