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

@atombender/hydrant-api

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atombender/hydrant-api - npm Package Compare versions

Comparing version 0.0.34 to 0.0.35

2

dist/dimensions.js

@@ -141,3 +141,3 @@ 'use strict';

value: function equals(other) {
return other instanceof AggregationInstance && other.dimension.equals(this.dimension) && (other.categoryValue.equals ? other.categoryValue.equals(this.categoryValue) : (0, _underscore.isEqual)(other.categoryValue, this.categoryValue)) && other.functionName === this.functionName;
return other instanceof AggregationInstance && other.dimension && other.dimension.equals(this.dimension) && (other.categoryValue.equals ? other.categoryValue.equals(this.categoryValue) : (0, _underscore.isEqual)(other.categoryValue, this.categoryValue)) && other.functionName === this.functionName;
}

@@ -144,0 +144,0 @@ }, {

{
"name": "@atombender/hydrant-api",
"version": "0.0.34",
"version": "0.0.35",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

@@ -12,3 +12,7 @@ import expect from 'expect.js';

const testTimeZones = [null, 'America/Los_Angeles', 'America/New_York'];
const testTimeZones = [
null,
'America/Los_Angeles',
'America/New_York'
];

@@ -29,4 +33,4 @@ describe('TIMEFRAMES', () => {

let range = getTimeframeById('this_year').getRange(tzName);
expect(range.start.format()).to.eql(now.startOf('year').format());
expect(range.end.format()).to.eql(now.format());
expect(range.start.format()).to.eql(moment(now).startOf('year').format());
expect(range.end.format('YYYY-MM-DD')).to.eql(now.format('YYYY-MM-DD'));
});

@@ -33,0 +37,0 @@ });

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