Socket
Socket
Sign inDemoInstall

react-date-picker

Package Overview
Dependencies
Maintainers
1
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-date-picker - npm Package Compare versions

Comparing version 8.0.4 to 8.0.5

2

dist/DateInput/Input.js

@@ -25,3 +25,3 @@ "use strict";

/* eslint-disable jsx-a11y/no-autofocus */
var isEdgeLegacy = navigator.userAgent.match(/ Edge\/1/);
var isEdgeLegacy = typeof window !== 'undefined' && 'navigator' in window && navigator.userAgent.match(/ Edge\/1/);

@@ -28,0 +28,0 @@ function onFocus(event) {

{
"name": "react-date-picker",
"version": "8.0.4",
"version": "8.0.5",
"description": "A date picker for your React app.",

@@ -5,0 +5,0 @@ "main": "dist/entry.js",

@@ -8,3 +8,7 @@ import React from 'react';

const isEdgeLegacy = navigator.userAgent.match(/ Edge\/1/);
const isEdgeLegacy = (
typeof window !== 'undefined'
&& 'navigator' in window
&& navigator.userAgent.match(/ Edge\/1/)
);

@@ -11,0 +15,0 @@ function onFocus(event) {

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