( sitemapPath )
| 55 | } |
| 56 | |
| 57 | export async function getAllUrlsFromLocalSitemap ( sitemapPath ) { |
| 58 | return await getAllUrlsFromSitemap( sitemapPath, { |
| 59 | getMethod: async ( sitemapPath ) => { |
| 60 | const sitemapXml = await fs.readFile( sitemapPath, 'utf8' ) |
| 61 | |
| 62 | return sitemapXml |
| 63 | } |
| 64 | }) |
| 65 | } |
| 66 | |
| 67 | export async function getAllUrlsFromSitemap ( sitemapSource, { getMethod } = {} ) { |
| 68 |
no test coverage detected