(version, options)
| 5581 | |
| 5582 | exports.valid = valid |
| 5583 | function valid (version, options) { |
| 5584 | var v = parse(version, options) |
| 5585 | return v ? v.version : null |
| 5586 | } |
| 5587 | |
| 5588 | exports.clean = clean |
| 5589 | function clean (version, options) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…