()
| 415 | } |
| 416 | |
| 417 | get compressionLevel() { |
| 418 | return this._compressionLevel; |
| 419 | } |
| 420 | set compressionLevel(compressionLevel) { |
| 421 | if (!Number.isInteger(compressionLevel) || compressionLevel < 0 || compressionLevel > 9) { |
| 422 | Log.Error("compressionLevel must be an integer between 0 and 9"); |
nothing calls this directly
no test coverage detected