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

tardis-dev

Package Overview
Dependencies
Maintainers
0
Versions
272
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tardis-dev - npm Package Compare versions

Comparing version 13.29.14 to 13.29.15

6

dist/mappers/okexspreads.js

@@ -100,2 +100,6 @@ "use strict";

for (const tbtTicker of message.data) {
const timestamp = new Date(Number(tbtTicker.ts));
if (timestamp.valueOf() === 0) {
continue;
}
const bestAsk = tbtTicker.asks !== undefined && tbtTicker.asks[0] ? mapBookLevel(tbtTicker.asks[0]) : undefined;

@@ -111,3 +115,3 @@ const bestBid = tbtTicker.bids !== undefined && tbtTicker.bids[0] ? mapBookLevel(tbtTicker.bids[0]) : undefined;

bidAmount: bestBid === null || bestBid === void 0 ? void 0 : bestBid.amount,
timestamp: new Date(Number(tbtTicker.ts)),
timestamp,
localTimestamp: localTimestamp

@@ -114,0 +118,0 @@ };

2

package.json
{
"name": "tardis-dev",
"version": "13.29.14",
"version": "13.29.15",
"engines": {

@@ -5,0 +5,0 @@ "node": ">=12"

@@ -115,2 +115,8 @@ import { upperCaseSymbols } from '../handy'

for (const tbtTicker of message.data) {
const timestamp = new Date(Number(tbtTicker.ts))
if (timestamp.valueOf() === 0) {
continue
}
const bestAsk = tbtTicker.asks !== undefined && tbtTicker.asks[0] ? mapBookLevel(tbtTicker.asks[0]) : undefined

@@ -128,3 +134,3 @@ const bestBid = tbtTicker.bids !== undefined && tbtTicker.bids[0] ? mapBookLevel(tbtTicker.bids[0]) : undefined

bidAmount: bestBid?.amount,
timestamp: new Date(Number(tbtTicker.ts)),
timestamp,
localTimestamp: localTimestamp

@@ -131,0 +137,0 @@ }

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