* Persists the RC file to disk, or returns false if no path on the instance.
()
| 234 | * Persists the RC file to disk, or returns false if no path on the instance. |
| 235 | */ |
| 236 | save() { |
| 237 | if (this.path) { |
| 238 | fs.writeFileSync(this.path, JSON.stringify(this.data, null, 2), { |
| 239 | encoding: "utf8", |
| 240 | }); |
| 241 | return true; |
| 242 | } |
| 243 | return false; |
| 244 | } |
| 245 | } |
no outgoing calls
no test coverage detected