(file, measurementPath, measurementValue)
| 49 | } |
| 50 | |
| 51 | async setAndSave(file, measurementPath, measurementValue) { |
| 52 | const particle = this.getParticle(file) |
| 53 | particle.set(measurementPath, measurementValue) |
| 54 | const result = await this.formatAndSave(file, particle) |
| 55 | return result |
| 56 | } |
| 57 | |
| 58 | async _formatAndSave(filePath, particle) { |
| 59 | const fusedFile = scrollFs.newFile(particle.toString(), filePath) |
nothing calls this directly
no test coverage detected