This repository was archived by the owner on Nov 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,12 @@ const debug = makeDebugger('L:JobsThread')
3434let store = null
3535let sub$ = null
3636
37- const validFilter = R . pickBy ( R . compose ( R . not , R . isEmpty ) )
37+ const validFilter = R . pickBy (
38+ R . compose (
39+ R . not ,
40+ R . isEmpty
41+ )
42+ )
3843
3944export const inAnchor = ( ) => store . setHeaderFix ( false )
4045export const outAnchor = ( ) => store . setHeaderFix ( true )
Original file line number Diff line number Diff line change @@ -35,7 +35,12 @@ let store = null
3535let sub$ = null
3636
3737// TODO: move to utils
38- const validFilter = R . pickBy ( R . compose ( R . not , R . isEmpty ) )
38+ const validFilter = R . pickBy (
39+ R . compose (
40+ R . not ,
41+ R . isEmpty
42+ )
43+ )
3944
4045export const inAnchor = ( ) => store . setHeaderFix ( false )
4146export const outAnchor = ( ) => store . setHeaderFix ( true )
Original file line number Diff line number Diff line change @@ -32,7 +32,12 @@ const debug = makeDebugger('L:ReposThread')
3232
3333let store = null
3434
35- const validFilter = R . pickBy ( R . compose ( R . not , R . isEmpty ) )
35+ const validFilter = R . pickBy (
36+ R . compose (
37+ R . not ,
38+ R . isEmpty
39+ )
40+ )
3641
3742export const inAnchor = ( ) => store . setHeaderFix ( false )
3843export const outAnchor = ( ) => store . setHeaderFix ( true )
Original file line number Diff line number Diff line change @@ -34,7 +34,12 @@ const debug = makeDebugger('L:VideosThread')
3434
3535let store = null
3636
37- const validFilter = R . pickBy ( R . compose ( R . not , R . isEmpty ) )
37+ const validFilter = R . pickBy (
38+ R . compose (
39+ R . not ,
40+ R . isEmpty
41+ )
42+ )
3843
3944export function loadVideos ( page = 1 ) {
4045 const { mainPath } = store . curRoute
You can’t perform that action at this time.
0 commit comments