( sectionName )
| 22 | }); |
| 23 | |
| 24 | const makeTopic = ( sectionName ) => ( name ) => ({ |
| 25 | name, |
| 26 | path: `${SOURCE_DIR}/${sectionName}/${name}`, |
| 27 | files: [], |
| 28 | tests: [], |
| 29 | }); |
| 30 | |
| 31 | /* Utility functions */ |
| 32 | const getFileContents = ( path ) => fs.existsAsync( path ) |