* Appends to a file synchronously. * @param {string} filePath The path to append to * @param {Buffer|string} data The data to append * @param {object} [options] Options
(filePath, data, options)
| 280 | * @param {object} [options] Options |
| 281 | */ |
| 282 | appendFileSync(filePath, data, options) { |
| 283 | const providerPath = this.#toProviderPath(filePath); |
| 284 | this[kProvider].appendFileSync(providerPath, data, options); |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Reads directory contents synchronously. |
nothing calls this directly
no test coverage detected