()
| 220 | } |
| 221 | |
| 222 | get basename(): string { |
| 223 | const name = this.name; |
| 224 | const lastDot = name.lastIndexOf('.'); |
| 225 | return lastDot > 0 ? name.substring(0, lastDot) : name; |
| 226 | } |
| 227 | |
| 228 | get extension(): string { |
| 229 | const name = this.name; |
no outgoing calls