Gets the formatted application version with a 'v' prefix.
const formatted = getFormattedAppVersion(); // 'v1.0.0' Copy
const formatted = getFormattedAppVersion(); // 'v1.0.0'
export const getFormattedAppVersion = (): string => { return `v${getAppVersion()}`;}; Copy
export const getFormattedAppVersion = (): string => { return `v${getAppVersion()}`;};
The formatted version string (e.g., 'v1.0.0').
Gets the formatted application version with a 'v' prefix.
Example
Source