New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

chronoshift

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chronoshift - npm Package Compare versions

Comparing version 0.5.4 to 0.5.5

3

build/chronoshift.js

@@ -738,4 +738,3 @@ 'use strict';

function isDate(d) {
return typeof d === 'object' &&
d.constructor.name === 'Date';
return !!(d && d.toISOString);
}

@@ -742,0 +741,0 @@

export function isDate(d) {
return typeof d === 'object' &&
d.constructor.name === 'Date';
return !!(d && d.toISOString);
}

@@ -8,4 +8,5 @@ import { expect } from "chai";

expect(isDate([])).to.equal(false);
expect(isDate(null)).to.equal(false);
});
});
});
{
"name": "chronoshift",
"version": "0.5.4",
"version": "0.5.5",
"description": "A tiny library for shifting time with timezones",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is too big to display

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