ajo 0.1.31 → 0.1.32
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/LLMs.md +349 -329
- package/context.js +18 -18
- package/dist/html.cjs +1 -1
- package/dist/html.js +47 -46
- package/dist/index.cjs +1 -1
- package/dist/index.js +86 -70
- package/dist/jsx.cjs +1 -0
- package/dist/jsx.js +12 -0
- package/html.js +137 -142
- package/index.js +309 -286
- package/jsx.js +21 -0
- package/license +15 -15
- package/package.json +19 -3
- package/readme.md +447 -434
- package/types.ts +135 -91
package/index.js
CHANGED
|
@@ -1,286 +1,309 @@
|
|
|
1
|
-
import { Context, current } from '
|
|
2
|
-
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
export const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
1
|
+
import { Context, current } from './context.js'
|
|
2
|
+
|
|
3
|
+
const { isArray } = Array, { assign, create } = Object
|
|
4
|
+
|
|
5
|
+
const Key = Symbol.for('ajo.key')
|
|
6
|
+
const Keyed = Symbol.for('ajo.keyed')
|
|
7
|
+
const Memo = Symbol.for('ajo.memo')
|
|
8
|
+
const Cache = Symbol.for('ajo.cache')
|
|
9
|
+
const Generator = Symbol.for('ajo.generator')
|
|
10
|
+
const Iterator = Symbol.for('ajo.iterator')
|
|
11
|
+
const Render = Symbol.for('ajo.render')
|
|
12
|
+
const Args = Symbol.for('ajo.args')
|
|
13
|
+
const Controller = Symbol.for('ajo.controller')
|
|
14
|
+
|
|
15
|
+
export const defaults = { tag: 'div' }
|
|
16
|
+
|
|
17
|
+
export const stateful = (fn, is) => (is && (fn.is = is), fn)
|
|
18
|
+
|
|
19
|
+
export const render = (h, el, child = el.firstChild, ref = null) => {
|
|
20
|
+
|
|
21
|
+
walk(h, h => {
|
|
22
|
+
|
|
23
|
+
const node = typeof h == 'string' ? text(h, child) : element(h, el, child)
|
|
24
|
+
|
|
25
|
+
if (child == null) {
|
|
26
|
+
|
|
27
|
+
before(el, node, ref)
|
|
28
|
+
|
|
29
|
+
} else if (node == child) {
|
|
30
|
+
|
|
31
|
+
child = node.nextSibling
|
|
32
|
+
|
|
33
|
+
} else if (node == child.nextSibling) {
|
|
34
|
+
|
|
35
|
+
before(el, child, ref)
|
|
36
|
+
|
|
37
|
+
child = node.nextSibling
|
|
38
|
+
|
|
39
|
+
} else {
|
|
40
|
+
|
|
41
|
+
before(el, node, child)
|
|
42
|
+
}
|
|
43
|
+
})
|
|
44
|
+
|
|
45
|
+
while (child != ref) {
|
|
46
|
+
|
|
47
|
+
const node = child.nextSibling
|
|
48
|
+
|
|
49
|
+
if (child.nodeType == 1) unref(child)
|
|
50
|
+
|
|
51
|
+
el.removeChild(child)
|
|
52
|
+
|
|
53
|
+
child = node
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const walk = (h, fn) => {
|
|
58
|
+
|
|
59
|
+
if (h == null) return
|
|
60
|
+
|
|
61
|
+
const type = typeof h
|
|
62
|
+
|
|
63
|
+
if (type == 'boolean') return
|
|
64
|
+
|
|
65
|
+
if (type == 'string') fn(h)
|
|
66
|
+
|
|
67
|
+
else if (type == 'number' || type == 'bigint') fn(String(h))
|
|
68
|
+
|
|
69
|
+
else if (Symbol.iterator in h) for (h of h) walk(h, fn)
|
|
70
|
+
|
|
71
|
+
else if ('nodeName' in h) typeof h.nodeName == 'function' ? run(h, fn) : fn(h)
|
|
72
|
+
|
|
73
|
+
else fn(String(h))
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
const run = ({ nodeName, ...h }, fn) => {
|
|
77
|
+
|
|
78
|
+
if (nodeName.constructor.name == 'GeneratorFunction') fn(runGenerator(nodeName, h))
|
|
79
|
+
|
|
80
|
+
else walk(nodeName(h), fn)
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
const runGenerator = (fn, h) => {
|
|
84
|
+
|
|
85
|
+
const attrs = { ...fn.attrs }, args = { ...fn.args }
|
|
86
|
+
|
|
87
|
+
for (const key in h) {
|
|
88
|
+
|
|
89
|
+
if (key.startsWith('attr:')) attrs[key.slice(5)] = h[key]
|
|
90
|
+
|
|
91
|
+
else if (key == 'key' || key == 'skip' || key == 'memo' || key == 'ref' || key.startsWith('set:')) attrs[key] = h[key]
|
|
92
|
+
|
|
93
|
+
else args[key] = h[key]
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
return { ...attrs, nodeName: fn.is ?? defaults.tag, [Generator]: fn, [Args]: args }
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
const text = (h, node) => {
|
|
100
|
+
|
|
101
|
+
while (node && node.nodeType != 3) node = node.nextSibling
|
|
102
|
+
|
|
103
|
+
node ? node.data != h && (node.data = h) : node = document.createTextNode(h)
|
|
104
|
+
|
|
105
|
+
return node
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
const element = (h, el, node) => {
|
|
109
|
+
|
|
110
|
+
const { nodeName, children, key, skip, memo, [Generator]: gen, [Args]: args } = h
|
|
111
|
+
|
|
112
|
+
if (key != null) node = (el[Keyed] ??= new Map()).get(key) ?? node
|
|
113
|
+
|
|
114
|
+
while (node && (
|
|
115
|
+
|
|
116
|
+
(node.localName != nodeName) ||
|
|
117
|
+
|
|
118
|
+
(node[Key] != null && node[Key] != key) ||
|
|
119
|
+
|
|
120
|
+
(node[Generator] && node[Generator] != gen)
|
|
121
|
+
|
|
122
|
+
)) node = node[Key] != null ? null : node.nextElementSibling
|
|
123
|
+
|
|
124
|
+
node ??= document.createElementNS(h.xmlns ?? el.namespaceURI, nodeName)
|
|
125
|
+
|
|
126
|
+
if (key != null) el[Keyed].set(node[Key] = key, node)
|
|
127
|
+
|
|
128
|
+
if (memo == null || some(node[Memo], node[Memo] = memo)) {
|
|
129
|
+
|
|
130
|
+
attrs(node[Cache], node[Cache] = h, node)
|
|
131
|
+
|
|
132
|
+
if (!skip) gen ? next(gen, args, node) : render(children, node)
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
return node
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
const attrs = (cache, h, node) => {
|
|
139
|
+
|
|
140
|
+
for (const key in { ...cache, ...h }) {
|
|
141
|
+
|
|
142
|
+
if (key == 'nodeName' || key == 'children' || key == 'key' || key == 'skip' || key == 'memo' || cache?.[key] === h[key]) continue
|
|
143
|
+
|
|
144
|
+
if (key == 'ref' && typeof h[key] == 'function') h[key](node)
|
|
145
|
+
|
|
146
|
+
else if (key.startsWith('set:')) node[key.slice(4)] = h[key]
|
|
147
|
+
|
|
148
|
+
else if (h[key] == null || h[key] === false) node.removeAttribute(key)
|
|
149
|
+
|
|
150
|
+
else node.setAttribute(key, h[key] === true ? '' : h[key])
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
const some = (a, b) => isArray(a) && isArray(b) ? a.some((v, i) => v !== b[i]) : a !== b
|
|
155
|
+
|
|
156
|
+
const each = (fn, node) => {
|
|
157
|
+
|
|
158
|
+
let child = node.firstElementChild
|
|
159
|
+
|
|
160
|
+
while (child)
|
|
161
|
+
|
|
162
|
+
if (fn(child) && child.firstElementChild) child = child.firstElementChild
|
|
163
|
+
|
|
164
|
+
else {
|
|
165
|
+
|
|
166
|
+
while (child != node && !child.nextElementSibling) child = child.parentNode ?? node
|
|
167
|
+
|
|
168
|
+
child = child != node && child.nextElementSibling
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
const before = (el, node, child) => {
|
|
173
|
+
|
|
174
|
+
if (node.isConnected && node.contains(document.activeElement)) {
|
|
175
|
+
|
|
176
|
+
const ref = node.nextSibling
|
|
177
|
+
|
|
178
|
+
while (child && child != node) {
|
|
179
|
+
|
|
180
|
+
const next = child.nextSibling
|
|
181
|
+
|
|
182
|
+
el.insertBefore(child, ref)
|
|
183
|
+
|
|
184
|
+
child = next
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
} else el.insertBefore(node, child)
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
const unref = root => {
|
|
191
|
+
|
|
192
|
+
let node = root
|
|
193
|
+
|
|
194
|
+
while (node.firstElementChild) node = node.firstElementChild
|
|
195
|
+
|
|
196
|
+
while (true) {
|
|
197
|
+
|
|
198
|
+
const { nextElementSibling, parentNode } = node
|
|
199
|
+
|
|
200
|
+
if (node[Key] != null) parentNode?.[Keyed]?.delete(node[Key])
|
|
201
|
+
|
|
202
|
+
if (typeof node.return == 'function') node.return(false)
|
|
203
|
+
|
|
204
|
+
if (typeof node[Cache]?.ref == 'function') node[Cache].ref(null)
|
|
205
|
+
|
|
206
|
+
if (node === root) break
|
|
207
|
+
|
|
208
|
+
node = nextElementSibling ?? parentNode ?? root
|
|
209
|
+
|
|
210
|
+
if (nextElementSibling) while (node.firstElementChild) node = node.firstElementChild
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
const next = (fn, args, el) => {
|
|
215
|
+
|
|
216
|
+
el[Generator] ??= (assign(el, methods)[Context] = create(current()?.[Context] ?? null), fn)
|
|
217
|
+
|
|
218
|
+
el[Args] = args
|
|
219
|
+
|
|
220
|
+
el[Render]()
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
const methods = {
|
|
224
|
+
|
|
225
|
+
*[Symbol.iterator]() { while (true) yield this[Args] },
|
|
226
|
+
|
|
227
|
+
[Render]() {
|
|
228
|
+
|
|
229
|
+
const parent = current()
|
|
230
|
+
|
|
231
|
+
current(this)
|
|
232
|
+
|
|
233
|
+
try {
|
|
234
|
+
|
|
235
|
+
if (!this[Iterator]) {
|
|
236
|
+
|
|
237
|
+
this.signal = (this[Controller] = new AbortController()).signal
|
|
238
|
+
|
|
239
|
+
this[Iterator] = this[Generator].call(this, this[Args])
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
const { value, done } = this[Iterator].next()
|
|
243
|
+
|
|
244
|
+
render(value, this)
|
|
245
|
+
|
|
246
|
+
if (done) this.return()
|
|
247
|
+
|
|
248
|
+
} catch (e) {
|
|
249
|
+
|
|
250
|
+
this.throw(e)
|
|
251
|
+
|
|
252
|
+
} finally {
|
|
253
|
+
|
|
254
|
+
current(parent)
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
|
|
258
|
+
next(fn, result) {
|
|
259
|
+
|
|
260
|
+
if (!this.isConnected) return result
|
|
261
|
+
|
|
262
|
+
try {
|
|
263
|
+
|
|
264
|
+
if (typeof fn == 'function') result = fn.call(this, this[Args])
|
|
265
|
+
|
|
266
|
+
} catch (e) {
|
|
267
|
+
|
|
268
|
+
return this.throw(e)
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
if (!current()?.contains(this)) this[Render]()
|
|
272
|
+
|
|
273
|
+
return result
|
|
274
|
+
},
|
|
275
|
+
|
|
276
|
+
throw(value) {
|
|
277
|
+
|
|
278
|
+
for (let el = this; el; el = el.parentNode) if (el[Iterator]?.throw) try {
|
|
279
|
+
|
|
280
|
+
return render(el[Iterator].throw(value).value, el)
|
|
281
|
+
|
|
282
|
+
} catch (e) {
|
|
283
|
+
|
|
284
|
+
value = new Error(e?.message ?? e, { cause: value })
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
throw value
|
|
288
|
+
},
|
|
289
|
+
|
|
290
|
+
return(deep = true) {
|
|
291
|
+
|
|
292
|
+
if (deep) each(el => typeof el.return == 'function' ? el.return() : true, this)
|
|
293
|
+
|
|
294
|
+
try {
|
|
295
|
+
|
|
296
|
+
this[Iterator]?.return()
|
|
297
|
+
|
|
298
|
+
} catch (e) {
|
|
299
|
+
|
|
300
|
+
this.throw(e)
|
|
301
|
+
|
|
302
|
+
} finally {
|
|
303
|
+
|
|
304
|
+
this[Iterator] = null
|
|
305
|
+
|
|
306
|
+
this[Controller]?.abort()
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
}
|
package/jsx.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export const Fragment = props => props.children
|
|
2
|
+
|
|
3
|
+
export const h = (type, props, ...children) => {
|
|
4
|
+
|
|
5
|
+
(props ??= {}).nodeName = type
|
|
6
|
+
|
|
7
|
+
if (!('children' in props) && children.length) props.children = children.length == 1 ? children[0] : children
|
|
8
|
+
|
|
9
|
+
return props
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export function jsx(type, props, key) {
|
|
13
|
+
|
|
14
|
+
if (key != null) (props ??= {}).key = key
|
|
15
|
+
|
|
16
|
+
return h(type, props)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export const jsxs = jsx
|
|
20
|
+
|
|
21
|
+
export const jsxDEV = jsx
|
package/license
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
ISC License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022-2026, Cristian Falcone
|
|
4
|
-
|
|
5
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
-
copyright notice and this permission notice appear in all copies.
|
|
8
|
-
|
|
9
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
10
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
11
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
12
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
13
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
14
|
-
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
15
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
1
|
+
ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022-2026, Cristian Falcone
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
10
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
11
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
12
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
13
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
14
|
+
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
15
|
+
PERFORMANCE OF THIS SOFTWARE.
|