* Gets stats for a path synchronously. * @param {string} path The path to stat * @param {object} [options] Options * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass
(path, options)
| 94 | * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass |
| 95 | */ |
| 96 | statSync(path, options) { |
| 97 | throw new ERR_METHOD_NOT_IMPLEMENTED('statSync'); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Gets stats for a path without following symlinks. |
no outgoing calls
no test coverage detected