| 27 | const productMapKeysAsSet = new Set(Object.keys(productMap)) |
| 28 | |
| 29 | export class FrontmatterErrorsError extends Error { |
| 30 | constructor(message, frontmatterErrors) { |
| 31 | super(message) |
| 32 | this.frontmatterErrors = frontmatterErrors |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | class Page { |
| 37 | static async init(opts) { |
nothing calls this directly
no outgoing calls
no test coverage detected