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

@itwin/core-bentley

Package Overview
Dependencies
Maintainers
5
Versions
975
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@itwin/core-bentley - npm Package Compare versions

Comparing version 4.10.0-dev.4 to 4.10.0-dev.6

2

lib/cjs/Id.d.ts

@@ -184,2 +184,4 @@ /** @packageDocumentation

constructor(ids?: Id64Arg);
/** Return true if `this` and `other` contain the same set of Ids. */
equals(other: Uint32Set): boolean;
/** Remove all contents of this set. */

@@ -186,0 +188,0 @@ clear(): void;

@@ -431,2 +431,23 @@ "use strict";

}
/** Return true if `this` and `other` contain the same set of Ids. */
equals(other) {
if (this === other) {
return true;
}
if (this.size !== other.size) {
return false;
}
for (const [key, thisValue] of this._map) {
const otherValue = other._map.get(key);
if (!otherValue || thisValue.size !== otherValue.size) {
return false;
}
for (const value of thisValue) {
if (!otherValue.has(value)) {
return false;
}
}
}
return true;
}
/** Remove all contents of this set. */

@@ -433,0 +454,0 @@ clear() {

@@ -184,2 +184,4 @@ /** @packageDocumentation

constructor(ids?: Id64Arg);
/** Return true if `this` and `other` contain the same set of Ids. */
equals(other: Uint32Set): boolean;
/** Remove all contents of this set. */

@@ -186,0 +188,0 @@ clear(): void;

@@ -428,2 +428,23 @@ /*---------------------------------------------------------------------------------------------

}
/** Return true if `this` and `other` contain the same set of Ids. */
equals(other) {
if (this === other) {
return true;
}
if (this.size !== other.size) {
return false;
}
for (const [key, thisValue] of this._map) {
const otherValue = other._map.get(key);
if (!otherValue || thisValue.size !== otherValue.size) {
return false;
}
for (const value of thisValue) {
if (!otherValue.has(value)) {
return false;
}
}
}
return true;
}
/** Remove all contents of this set. */

@@ -430,0 +451,0 @@ clear() {

4

package.json
{
"name": "@itwin/core-bentley",
"version": "4.10.0-dev.4",
"version": "4.10.0-dev.6",
"description": "Bentley JavaScript core components",

@@ -38,3 +38,3 @@ "main": "lib/cjs/core-bentley.js",

"typescript": "~5.3.3",
"@itwin/build-tools": "4.10.0-dev.4"
"@itwin/build-tools": "4.10.0-dev.6"
},

@@ -41,0 +41,0 @@ "nyc": {

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

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

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

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

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

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

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

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

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

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

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

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

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

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