router-base icon indicating copy to clipboard operation
router-base copied to clipboard

Base router for your JS framework or frameworkless app

Results 2 router-base issues
Sort by recently updated
recently updated
newest added

``` js var myRoutes = [{ id: 'route_with_parameter_in_path', path: '/some/path/{parameter}', defaults: {parameter: 1} }]; myRouter.generate('route_with_parameter_in_path'); // returns '/some/path' ``` при такой декларации ожидаемое поведение: `/some/path/1` А описанный способ генерации "пустого...