1
0

Forgotten return statement in stringifySemver()

The function stringifySemver() must return the generate string.
Este cometimento está contido em:
Jean Ponchon 2013-05-17 10:50:14 +02:00
ascendente 2094174df2
cometimento a637a3d4c2

Ver ficheiro

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