Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aurumjs

Package Overview
Dependencies
Maintainers
0
Versions
244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurumjs - npm Package Compare versions

Comparing version 0.9.40 to 0.9.41

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc