added migrations for instant delivery
This commit is contained in:
25
node_modules/react-router/lib/actions/LocationActions.js
generated
vendored
Normal file
25
node_modules/react-router/lib/actions/LocationActions.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* Actions that modify the URL.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var LocationActions = {
|
||||
|
||||
/**
|
||||
* Indicates a new location is being pushed to the history stack.
|
||||
*/
|
||||
PUSH: 'push',
|
||||
|
||||
/**
|
||||
* Indicates the current location should be replaced.
|
||||
*/
|
||||
REPLACE: 'replace',
|
||||
|
||||
/**
|
||||
* Indicates the most recent entry should be removed from the history stack.
|
||||
*/
|
||||
POP: 'pop'
|
||||
|
||||
};
|
||||
|
||||
module.exports = LocationActions;
|
||||
Reference in New Issue
Block a user