(previewTitle)
| 173 | * @return {string} |
| 174 | */ |
| 175 | export function previewAnchor(previewTitle) { |
| 176 | return previewTitle |
| 177 | .toLowerCase() |
| 178 | .replace(/ /g, '-') |
| 179 | .replace(/[^\w-]/g, '') |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Turn changes from graphql-inspector into messages for the HTML changelog. |
no outgoing calls
no test coverage detected