Update README.md

This commit is contained in:
AJ ONeal 2014-02-24 16:35:47 -06:00
parent f587dbbc80
commit 484199f855
1 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ Turns a string such as `1.0.6-1+build-623` into the object
returns `null` on **error** returns `null` on **error**
### stringify(semverObject) ### semverUtils.stringify(semverObject)
Creates a string such as `1.0.6-1+build-623` from the object Creates a string such as `1.0.6-1+build-623` from the object
@ -54,7 +54,7 @@ Creates a string such as `1.0.6-1+build-623` from the object
, build: 'build-623' , build: 'build-623'
} }
### parseRange(rangeString) ### semverUtils.parseRange(rangeString)
A solution to <https://github.com/isaacs/node-semver/issues/10> A solution to <https://github.com/isaacs/node-semver/issues/10>
@ -90,7 +90,7 @@ Parses a range string into an array of semver objects
] ]
### stringifyRange(rangeArray) ### semverUtils.stringifyRange(rangeArray)
Creates a range string such as `>= 1.1.7 < 2.0.0 || 1.1.3` Creates a range string such as `>= 1.1.7 < 2.0.0 || 1.1.3`
from an array of semver objects (and operators) such as from an array of semver objects (and operators) such as