@vizabi/core
Advanced tools
Comparing version 1.24.0 to 1.24.1
@@ -1,2 +0,2 @@ | ||
// http://vizabi.org v1.24.0 Copyright 2022 Jasper Heeffer and others at Gapminder Foundation | ||
// http://vizabi.org v1.24.1 Copyright 2022 Jasper Heeffer and others at Gapminder Foundation | ||
(function (global, factory) { | ||
@@ -147,4 +147,4 @@ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('mobx')) : | ||
const comparisonToString = { | ||
"$eq": (field, val) => `row["${field}"] === ${val}`, | ||
"$ne": (field, val) => `row["${field}"] !== ${val}`, | ||
"$eq": (field, val) => `row["${field}"] == ${val}`, | ||
"$ne": (field, val) => `row["${field}"] != ${val}`, | ||
"$gt": (field, val) => `row["${field}"] > ${val}`, | ||
@@ -151,0 +151,0 @@ "$gte": (field, val) => `row["${field}"] >= ${val}`, |
{ | ||
"name": "@vizabi/core", | ||
"version": "1.24.0", | ||
"version": "1.24.1", | ||
"description": "Vizabi core (data layer)", | ||
@@ -5,0 +5,0 @@ "main": "dist/Vizabi.js", |
@@ -95,4 +95,4 @@ import { deepclone, pipe, isString } from "../../core/utils"; | ||
const comparisonToString = { | ||
"$eq": (field, val) => `row["${field}"] === ${val}`, | ||
"$ne": (field, val) => `row["${field}"] !== ${val}`, | ||
"$eq": (field, val) => `row["${field}"] == ${val}`, | ||
"$ne": (field, val) => `row["${field}"] != ${val}`, | ||
"$gt": (field, val) => `row["${field}"] > ${val}`, | ||
@@ -99,0 +99,0 @@ "$gte": (field, val) => `row["${field}"] >= ${val}`, |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1271643