@analys/table-lookup
Advanced tools
Comparing version 0.1.6 to 0.1.7
@@ -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" | ||
} |
7236
Updated@analys/enum-lookups@^0.1.7
Updated@analys/table-index@^0.1.7