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

@metrichor/nextclade

Package Overview
Dependencies
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@metrichor/nextclade - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

dist/nextclade/p-b912ad95.entry.js

4

dist/collection/components/helpers/filters.js

@@ -28,4 +28,4 @@ import { getPath, isNullish } from '../../utils';

export const sortBy = (field) => (dir = '') => (a, b) => {
const first = getPath(a, field);
const second = getPath(b, field);
const first = getPath(a, field) ?? Infinity;
const second = getPath(b, field) ?? Infinity;
if (isNullish(dir) || first === second)

@@ -32,0 +32,0 @@ return 0;

@@ -16,5 +16,3 @@ export const debounce = (func, wait, immediate) => {

export function getPath(o, path) {
let v = o;
path.split('.').map(p => (v = v[p] ?? {}));
return v;
return path.split('.').reduce((p, c) => (c in (p || {}) ? p[c] : undefined), o);
}

@@ -21,0 +19,0 @@ // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types

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

import{p as e,b as t}from"./p-355a3b42.js";(()=>{const t=import.meta.url,n={};return""!==t&&(n.resourcesUrl=new URL(".",t).href),e(n)})().then((e=>t([["p-e6fc13c7",[[1,"nxt-button"]]],["p-3f527be2",[[1,"nxt-table",{data:[16],summary:[4],_data:[32],filtersOpen:[32],seqNameDirection:[32],qcDirection:[32],cladeDirection:[32],mutDirection:[32],NonAcgtnDirection:[32],missingDirection:[32],gapsDirection:[32],seqNameTerm:[32],nucTerm:[32],aaTerm:[32],cladeTerm:[32],qcTerm:[32]}],[1,"nxt-row",{data:[16],index:[2],genomeSize:[2,"genome-size"],summary:[4]}],[2,"nxt-filter",{open:[4],handlers:[16],status:[32]}],[1,"nxt-logo"],[1,"nxt-sort",{sortFn:[16],dir:[32]}],[1,"nxt-qc",{data:[16],open:[32]}],[1,"nxt-sequence",{missing:[16],substitutions:[16],deletions:[16],alignmentStart:[2,"alignment-start"],alignmentEnd:[2,"alignment-end"],genomeSize:[2,"genome-size"],pixelsPerBase:[32],width:[32]}],[1,"nxt-circle",{status:[1]}],[1,"nxt-tip"]]]],e)));
import{p as e,b as t}from"./p-355a3b42.js";(()=>{const t=import.meta.url,n={};return""!==t&&(n.resourcesUrl=new URL(".",t).href),e(n)})().then((e=>t([["p-e6fc13c7",[[1,"nxt-button"]]],["p-b912ad95",[[1,"nxt-table",{data:[16],summary:[4],_data:[32],filtersOpen:[32],seqNameDirection:[32],qcDirection:[32],cladeDirection:[32],mutDirection:[32],NonAcgtnDirection:[32],missingDirection:[32],gapsDirection:[32],seqNameTerm:[32],nucTerm:[32],aaTerm:[32],cladeTerm:[32],qcTerm:[32]}],[1,"nxt-row",{data:[16],index:[2],genomeSize:[2,"genome-size"],summary:[4]}],[2,"nxt-filter",{open:[4],handlers:[16],status:[32]}],[1,"nxt-logo"],[1,"nxt-sort",{sortFn:[16],dir:[32]}],[1,"nxt-qc",{data:[16],open:[32]}],[1,"nxt-sequence",{missing:[16],substitutions:[16],deletions:[16],alignmentStart:[2,"alignment-start"],alignmentEnd:[2,"alignment-end"],genomeSize:[2,"genome-size"],pixelsPerBase:[32],width:[32]}],[1,"nxt-circle",{status:[1]}],[1,"nxt-tip"]]]],e)));
{
"name": "@metrichor/nextclade",
"version": "0.1.1",
"version": "0.1.2",
"description": "Nextclade visualisation",

@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js",

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

Sorry, the diff of this file is not supported yet

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 too big to display

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