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

@ex-master/core

Package Overview
Dependencies
Maintainers
2
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ex-master/core - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

3

bld/library/spot-client.js

@@ -16,4 +16,5 @@ "use strict";

this._destroyed = false;
this.balanceMap = new Map();
this.dashboard = dashboard;
this.ready = this.initialize();
this.ready = new Promise(nextTick => process.nextTick(nextTick)).then(() => this.initialize());
}

@@ -20,0 +21,0 @@ get destroyed() {

{
"name": "@ex-master/core",
"version": "0.3.3",
"version": "0.3.4",
"main": "bld/library/index.js",

@@ -25,3 +25,3 @@ "types": "bld/library/index.d.ts",

},
"gitHead": "7a7e8023a4aea3f9e6111abb19c7cfd3e38042b0"
"gitHead": "ba7970b4124a958f0f03571f8e34589076fe5218"
}

@@ -96,3 +96,3 @@ import {EventEmitter} from 'events';

private balanceMap!: Map<string, Balance>;
private balanceMap = new Map<string, Balance>();
private symbolToMarketDataMap!: Map<string, SpotMarketData>;

@@ -112,3 +112,6 @@

this.dashboard = dashboard;
this.ready = this.initialize();
this.ready = new Promise(nextTick => process.nextTick(nextTick)).then(() =>
this.initialize(),
);
}

@@ -115,0 +118,0 @@

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