()
| 947 | this.format()); |
| 948 | } |
| 949 | format() { |
| 950 | return ( |
| 951 | (this.version = `${this.major}.${this.minor}.${this.patch}`), |
| 952 | this.prerelease.length && |
| 953 | (this.version += `-${this.prerelease.join(".")}`), |
| 954 | this.version |
| 955 | ); |
| 956 | } |
| 957 | toString() { |
| 958 | return this.version; |
| 959 | } |
no outgoing calls
no test coverage detected