* remove leading / trailing whitespace from a string
(str)
| 18 | */ |
| 19 | |
| 20 | function strip(str) { |
| 21 | return str.replace(/^\s+|\s+$/g, ''); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Filter local tags which are valid semvers and return the highest version |
no outgoing calls
no test coverage detected
searching dependent graphs…