New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@exodus/models

Package Overview
Dependencies
Maintainers
0
Versions
133
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/models - npm Package Compare versions

Comparing version 11.16.0 to 11.16.1

15

lib/fiat-order-set/index.js

@@ -49,4 +49,17 @@ "use strict";

}
const errors = [];
const items = new Map();
for (const item of arr) {
try {
const item_ = isObjectOrConvert(item);
items.set(String(item_), item_);
} catch (error) {
errors.push([error, item]);
}
}
if (errors.length > 0) {
console.warn('FiatOrderSet failed to convert object to FiatOrder', errors);
}
return new FiatOrderSet({
items: new Map(arr.map(isObjectOrConvert).map(item => [String(item), item])),
items,
initSymbol: FACTORY_SYMBOL

@@ -53,0 +66,0 @@ });

4

package.json
{
"name": "@exodus/models",
"version": "11.16.0",
"version": "11.16.1",
"description": "Exodus models",

@@ -41,3 +41,3 @@ "main": "lib/index.js",

},
"gitHead": "84eede2af2ce72cff7f815a85ec2a59806bbefdb"
"gitHead": "80fcd7d62e3c7380355ab655cb2459976c57c4fc"
}
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