We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Home > @microsoft/sp-core-library > Version > tryParse
Attempts to parse the input string to construct a new Version object. If the string cannot be parsed, then undefined is returned.
Signature:
static tryParse(versionString: string | undefined | null): Version | undefined;
Returns:
Version | undefined
The Version object, or undefined if the string could not be parsed.
Home