UNPKG

211 BJavaScriptView Raw
1module.exports = (nextState, isAlwaysTrue) => (
2 (isAlwaysTrue || typeof location === 'undefined' || __SERVER__ || __SPA__)
3 ? true
4 : (nextState.location.pathname === location.pathname)
5)