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

tardis-dev

Package Overview
Dependencies
Maintainers
1
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.4.4 to 13.4.5

4

dist/mappers/deribit.js

@@ -65,3 +65,5 @@ "use strict";

// snapshots do not have prev_change_id set
const isSnapshot = deribitBookChange.prev_change_id === undefined;
const isSnapshot = (deribitBookChange.type !== undefined && deribitBookChange.type === 'snapshot') ||
deribitBookChange.prev_change_id === undefined ||
deribitBookChange.prev_change_id === 0;
yield {

@@ -68,0 +70,0 @@ type: 'book_change',

{
"name": "tardis-dev",
"version": "13.4.4",
"version": "13.4.5",
"engines": {

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

@@ -76,3 +76,6 @@ import { asNumberIfValid, upperCaseSymbols } from '../handy'

// snapshots do not have prev_change_id set
const isSnapshot = deribitBookChange.prev_change_id === undefined
const isSnapshot =
(deribitBookChange.type !== undefined && deribitBookChange.type === 'snapshot') ||
deribitBookChange.prev_change_id === undefined ||
deribitBookChange.prev_change_id === 0

@@ -327,2 +330,3 @@ yield {

asks: DeribitBookLevel[]
type?: 'snapshot' | 'change'
}

@@ -329,0 +333,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