()
| 186 | __proto__: null, |
| 187 | // Put this here so that it is enumerable, and looks like a property. |
| 188 | get() { |
| 189 | return this._prefix + this._code + this._suffix; |
| 190 | }, |
| 191 | set(value) { |
| 192 | const strNewCode = String(value); |
| 193 | if (strNewCode === this._code && this._prefix === '' && this._suffix === '') return; |
no outgoing calls
no test coverage detected