@@ -34,7 +34,7 @@ node ./bin/cli.mjs convertInputSelectorsToArray path/of/files/ or/some**/*glob.j
3434
3535<a id =" separate-inline-arguments.ts " >** separate-inline-arguments.ts** </a >
3636
37- ** Input** (<small >[ separate-inline-arguments.input.ts] ( transforms\convertInputSelectorsToArray \_ _testfixtures__ \separate-inline-arguments.input.ts ) </small >):
37+ ** Input** (<small >[ separate-inline-arguments.input.ts] ( transforms\convertInputSelectorsToArray__testfixtures__ \separate-inline-arguments.input.ts ) </small >):
3838
3939``` ts
4040import { createSelector } from ' reselect'
@@ -47,11 +47,11 @@ export interface RootState {
4747const selectTodoById = createSelector (
4848 (state : RootState ) => state .todos ,
4949 (state : RootState , id : number ) => id ,
50- (todos , id ) => todos .find (todo => todo .id === id )
50+ (todos , id ) => todos .find (todo => todo .id === id ),
5151)
5252```
5353
54- ** Output** (<small >[ separate-inline-arguments.output.ts] ( transforms\convertInputSelectorsToArray \_ _testfixtures__ \separate-inline-arguments.output.ts ) </small >):
54+ ** Output** (<small >[ separate-inline-arguments.output.ts] ( transforms\convertInputSelectorsToArray__testfixtures__ \separate-inline-arguments.output.ts ) </small >):
5555
5656``` ts
5757import { createSelector } from ' reselect'
@@ -63,7 +63,8 @@ export interface RootState {
6363
6464const selectTodoById = createSelector (
6565 [(state : RootState ) => state .todos , (state : RootState , id : number ) => id ],
66- (todos , id ) => todos .find (todo => todo .id === id )
66+ (todos , id ) => todos .find (todo => todo .id === id ),
6767)
6868```
69- <!-- FIXTURES_CONTENT_END-->
69+
70+ <!-- FIXTURES_CONTENT_END-->
0 commit comments