* Gets file stats. * @param {object} [options] Options * @returns {Promise }
(options)
| 203 | * @returns {Promise<Stats>} |
| 204 | */ |
| 205 | async stat(options) { |
| 206 | this.#checkClosed('fstat'); |
| 207 | throw new ERR_METHOD_NOT_IMPLEMENTED('stat'); |
| 208 | } |
| 209 | |
| 210 | /** |
| 211 | * Gets file stats synchronously. |
nothing calls this directly
no test coverage detected