@contrail/types
Advanced tools
Comparing version 3.0.50 to 3.0.51
import { ReducedOptionSet } from './interfaces'; | ||
export declare function parseOptionSets(csvData: any[]): ReducedOptionSet[]; | ||
export declare function parseOptionSet(columnName: any, values: Set<string>): ReducedOptionSet; | ||
export declare function parseOptionSet(columnName: string, values: Set<string>): ReducedOptionSet; |
@@ -9,2 +9,5 @@ "use strict"; | ||
for (const [key, value] of Object.entries(row)) { | ||
if (!valuesByFieldName[key]) { | ||
valuesByFieldName[key] = new Set(); | ||
} | ||
if (!value) { | ||
@@ -11,0 +14,0 @@ continue; |
{ | ||
"name": "@contrail/types", | ||
"version": "3.0.50", | ||
"version": "3.0.51", | ||
"description": "Types Utility module", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
71004
1699