UNPKG

redux-first-router

Version:

think of your app in states not routes (and, yes, while keeping the address bar in sync)

16 lines (11 loc) 248 B
export default (function (_ref) { var pathname = _ref.pathname, search = _ref.search; if (search) { if (search.indexOf('?') !== 0) { search = '?' + search; } return '' + pathname + search; } return pathname; });