(string)
| 1 | function skipSpace(string) { |
| 2 | let skippable = string.match(/^(\s|#.*)*/); |
| 3 | return string.slice(skippable[0].length); |
| 4 | } |
| 5 | |
| 6 | console.log(parse("# hello\nx")); |
| 7 | // → {type: "word", name: "x"} |
nothing calls this directly
no outgoing calls
no test coverage detected