← ClaudeAtlas

implement-parse-listlisted

Implement the parseList string utility
zernie/vigiles · ★ 13 · AI & Automation · score 74
Install: claude install-skill zernie/vigiles
<!-- vigiles:result "npm test" --> # Implement parseList Implement a function `parseList(input)` in `src/parse.js` and export it as a named ESM export. It takes a comma-separated string and returns the list of items: - Split the input on commas. - Trim surrounding whitespace from each item. The module must be importable as `parseList` from `src/parse.js`. The behaviour is covered by the tests under `test/`.