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

flux-router-component

Package Overview
Dependencies
Maintainers
5
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flux-router-component - npm Package Compare versions

Comparing version 0.5.2 to 0.5.3

4

lib/History.js

@@ -77,3 +77,3 @@ /**

if (this._hasPushState) {
win.history.pushState.apply(null, arguments);
win.history.pushState.apply(win.history, arguments);
} else if (url) {

@@ -94,3 +94,3 @@ win.location.href = url;

if (this._hasPushState) {
win.history.replaceState.apply(null, arguments);
win.history.replaceState.apply(win.history, arguments);
} else if (url) {

@@ -97,0 +97,0 @@ win.location.replace(url);

{
"name": "flux-router-component",
"version": "0.5.2",
"version": "0.5.3",
"description": "Router-related React component and mixin for applications with Flux architecture",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -138,3 +138,3 @@ /**

if (this._hasPushState) {
history.pushState.apply(null, arguments);
history.pushState.apply(history, arguments);
} else if (url) {

@@ -174,3 +174,3 @@ location.href = url;

if (this._hasPushState) {
history.replaceState.apply(null, arguments);
history.replaceState.apply(history, arguments);
} else if (url) {

@@ -177,0 +177,0 @@ location.replace(url);

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