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

@gmod/cram

Package Overview
Dependencies
Maintainers
6
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gmod/cram - npm Package Compare versions

Comparing version 1.6.3 to 1.6.4

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# v1.6.4
- Fix off by one in returning features from getRecordsFromRange
# v1.6.3

@@ -2,0 +6,0 @@

2

dist/craiIndex.js

@@ -199,3 +199,3 @@ "use strict";

var entryEnd = entry.start + entry.span;
if (entryStart >= queryEnd) {
if (entryStart > queryEnd) {
return -1;

@@ -202,0 +202,0 @@ } // entry is ahead of query

@@ -141,3 +141,3 @@ import AbortablePromiseCache from 'abortable-promise-cache';

const entryEnd = entry.start + entry.span;
if (entryStart >= queryEnd) {
if (entryStart > queryEnd) {
return -1;

@@ -144,0 +144,0 @@ } // entry is ahead of query

{
"name": "@gmod/cram",
"version": "1.6.3",
"version": "1.6.4",
"description": "read CRAM files with pure Javascript",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -164,3 +164,3 @@ import AbortablePromiseCache from 'abortable-promise-cache'

const entryEnd = entry.start + entry.span
if (entryStart >= queryEnd) {
if (entryStart > queryEnd) {
return -1

@@ -167,0 +167,0 @@ } // entry is ahead of query

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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