New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@analys/table-lookup

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@analys/table-lookup - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

6

dist/index.cjs.js

@@ -47,5 +47,5 @@ 'use strict';

const table = this;
let ds, dict;
if (!(ds = table[enumLookups.VLKP]) || !(dict = ds.dict) || ds.key !== key || ds.value !== field) table[enumLookups.VLKP] = {
dict: dict = lookupTable.call(table, key, field),
let dset, dict;
if (!(dset = table[enumLookups.VLKP]) || !(dict = dset.dict) || dset.key !== key || dset.value !== field) table[enumLookups.VLKP] = {
dict: dict = lookupTable.call(table, key, field, true),
key: key,

@@ -52,0 +52,0 @@ value: field

@@ -43,5 +43,5 @@ import { VLKP } from '@analys/enum-lookups';

const table = this;
let ds, dict;
if (!(ds = table[VLKP]) || !(dict = ds.dict) || ds.key !== key || ds.value !== field) table[VLKP] = {
dict: dict = lookupTable.call(table, key, field),
let dset, dict;
if (!(dset = table[VLKP]) || !(dict = dset.dict) || dset.key !== key || dset.value !== field) table[VLKP] = {
dict: dict = lookupTable.call(table, key, field, true),
key: key,

@@ -48,0 +48,0 @@ value: field

{
"name": "@analys/table-lookup",
"version": "0.1.6",
"version": "0.1.7",
"description": "A cross-table-lookup analytics tool",

@@ -18,4 +18,4 @@ "main": "dist/index.cjs.js",

"dependencies": {
"@analys/enum-lookups": "^0.1.6",
"@analys/table-index": "^0.1.6",
"@analys/enum-lookups": "^0.1.7",
"@analys/table-index": "^0.1.7",
"@vect/column-getter": "^0.2.0",

@@ -45,3 +45,3 @@ "@vect/entries-init": "^0.2.0",

"homepage": "https://github.com/hoyeungw/analys#readme",
"gitHead": "86b60936c783faf3d41861c7a592972dfedcd22d"
"gitHead": "f254dc82b840ebed154e476d57a081b149113004"
}
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