Comparing version 0.9.40 to 0.9.41
{ | ||
"name": "aurumjs", | ||
"version": "0.9.40", | ||
"version": "0.9.41", | ||
"main": "prebuilt/esnext/aurumjs.js", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -83,3 +83,3 @@ import { ArrayDataSource, DataSource, MapDataSource } from '../stream/data_source.js'; | ||
} | ||
else { | ||
else if (data[i] !== undefined) { | ||
result.push([i, data[i]]); | ||
@@ -86,0 +86,0 @@ } |
@@ -356,2 +356,5 @@ import { ArrayDataSource, DataSource } from '../stream/data_source.js'; | ||
this.api.cancellationToken.cancel(); | ||
for (const children of this.children) { | ||
this.renderSessions.get(children)?.sessionToken.cancel(); | ||
} | ||
super.dispose(); | ||
@@ -358,0 +361,0 @@ } |
@@ -146,3 +146,8 @@ import { DataSource, MapDataSource, ArrayDataSource } from '../stream/data_source.js'; | ||
else { | ||
return data.join(' '); | ||
if (data.length === 1) { | ||
return data[0]; | ||
} | ||
else { | ||
return data.join(' '); | ||
} | ||
} | ||
@@ -149,0 +154,0 @@ }, cancellationToken); |
@@ -93,3 +93,3 @@ import { ArrayDataSource, DataSource, MapDataSource, ReadOnlyDataSource } from '../stream/data_source.js'; | ||
}, cleanUp); | ||
} else { | ||
} else if (data[i] !== undefined) { | ||
result.push([i, data[i]]); | ||
@@ -96,0 +96,0 @@ } |
@@ -445,2 +445,5 @@ import { ArrayDataSource, CollectionChange, DataSource, ReadOnlyArrayDataSource, ReadOnlyDataSource } from '../stream/data_source.js'; | ||
this.api.cancellationToken.cancel(); | ||
for (const children of this.children) { | ||
this.renderSessions.get(children)?.sessionToken.cancel(); | ||
} | ||
super.dispose(); | ||
@@ -447,0 +450,0 @@ } |
@@ -169,3 +169,7 @@ import { ReadOnlyDataSource, DataSource, MapDataSource, ArrayDataSource } from '../stream/data_source.js'; | ||
} else { | ||
return data.join(' '); | ||
if (data.length === 1) { | ||
return data[0]; | ||
} else { | ||
return data.join(' '); | ||
} | ||
} | ||
@@ -172,0 +176,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2074849
27617