(text, expression)
| 2 | import { readText, relativePath } from "../lib/files.js"; |
| 3 | |
| 4 | function countMatches(text, expression) { |
| 5 | return (text.match(expression) || []).length; |
| 6 | } |
| 7 | |
| 8 | function countDecisionPoints(text) { |
| 9 | return ( |
no outgoing calls
no test coverage detected