Merge pull request #1 from nopnop/patch-1

Forgotten return statement in stringifySemver()
This commit is contained in:
AJ ONeal 2013-05-17 11:19:20 -07:00
commit ca103273a5
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) {