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

@deephaven/jsapi-utils

Package Overview
Dependencies
Maintainers
6
Versions
674
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deephaven/jsapi-utils - npm Package Compare versions

Comparing version 0.15.6-vite.21 to 0.15.6

2

dist/formatters/DateTimeColumnFormatter.d.ts

@@ -23,3 +23,3 @@ import { DateWrapper, TimeZone } from '@deephaven/jsapi-shim';

*/
static isSameFormat(formatA?: TableColumnFormat, formatB?: TableColumnFormat): boolean;
static isSameFormat(formatA: TableColumnFormat | null, formatB: TableColumnFormat | null): boolean;
static DEFAULT_DATETIME_FORMAT_STRING: string;

@@ -26,0 +26,0 @@ static DEFAULT_TIME_ZONE_ID: string;

@@ -40,3 +40,3 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }

static isSameFormat(formatA, formatB) {
return formatA === formatB || formatA != null && formatB != null && formatA.type === formatB.type && formatA.formatString === formatB.formatString;
return formatA === formatB || formatA !== null && formatB !== null && formatA.type === formatB.type && formatA.formatString === formatB.formatString;
}

@@ -43,0 +43,0 @@

@@ -52,3 +52,3 @@ import TableColumnFormatter, { TableColumnFormat } from './TableColumnFormatter';

*/
static isSameFormat(formatA?: DecimalColumnFormat, formatB?: DecimalColumnFormat): boolean;
static isSameFormat(formatA: DecimalColumnFormat | null, formatB: DecimalColumnFormat | null): boolean;
defaultFormatString: string;

@@ -55,0 +55,0 @@ constructor({ defaultFormatString, }?: DecimalColumnFormatterOptions);

@@ -46,3 +46,3 @@ import TableColumnFormatter, { TableColumnFormat } from './TableColumnFormatter';

*/
static isSameFormat(formatA?: IntegerColumnFormat, formatB?: IntegerColumnFormat): boolean;
static isSameFormat(formatA: IntegerColumnFormat | null, formatB: IntegerColumnFormat | null): boolean;
static DEFAULT_FORMAT_STRING: string;

@@ -49,0 +49,0 @@ static FORMAT_MILLIONS: IntegerColumnFormat;

@@ -27,3 +27,3 @@ /**

*/
static isSameFormat(formatA?: TableColumnFormat, formatB?: TableColumnFormat): boolean;
static isSameFormat(formatA: TableColumnFormat | null, formatB: TableColumnFormat | null): boolean;
/**

@@ -30,0 +30,0 @@ * Create and return a Format object

{
"name": "@deephaven/jsapi-utils",
"version": "0.15.6-vite.21+822fd63",
"version": "0.15.6",
"description": "Deephaven JSAPI Utils",

@@ -30,9 +30,9 @@ "author": "Deephaven Data Labs LLC",

"dependencies": {
"@deephaven/filters": "^0.15.6-vite.21+822fd63",
"@deephaven/jsapi-shim": "^0.15.6-vite.21+822fd63",
"@deephaven/log": "^0.15.6-vite.21+822fd63",
"@deephaven/utils": "^0.15.6-vite.21+822fd63"
"@deephaven/filters": "^0.15.2",
"@deephaven/jsapi-shim": "^0.15.6",
"@deephaven/log": "^0.15.5",
"@deephaven/utils": "^0.15.6"
},
"devDependencies": {
"@deephaven/tsconfig": "^0.15.6-vite.21+822fd63"
"@deephaven/tsconfig": "^0.15.2"
},

@@ -45,3 +45,3 @@ "files": [

},
"gitHead": "822fd633ddb5c62b896547cf90b1cad01799a346"
"gitHead": "c54e11a1fe772b855b6bac2a1534857c8cedc8f8"
}

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 not supported yet

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 not supported yet

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 not supported yet

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 not supported yet

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 not supported yet

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 not supported yet

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