* Returns true if this handle was opened in append mode. * @returns {boolean}
()
| 423 | * @returns {boolean} |
| 424 | */ |
| 425 | #isAppend() { |
| 426 | const f = this.flags; |
| 427 | return f === 'a' || f === 'a+' || f === 'ax' || f === 'ax+'; |
| 428 | } |
| 429 | |
| 430 | /** |
| 431 | * Gets the current content synchronously. |
no outgoing calls
no test coverage detected