Forgotten return statement in stringifySemver()

The function stringifySemver() must return the generate string.
This commit is contained in:
Jean Ponchon 2013-05-17 10:50:14 +02:00
parent 2094174df2
commit a637a3d4c2
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@
if (obj.build) {
str += '+' + obj.build;
}
return str;
}
function parseSemverRange(str) {