UNPKG

homebridge-eveatmo

Version:

Homebridge plugin which adds a Netatmo weatherstation as HomeKit device and tries to act like Elgato Eve Room/Weather

14 lines (10 loc) 369 B
'use strict'; /* eslint-disable @typescript-eslint/no-require-imports */ const fs = require('fs'); const os = require('os'); const path = require('path'); /* eslint-enable @typescript-eslint/no-require-imports */ function createScratchStoragePath() { return fs.mkdtempSync(path.join(os.tmpdir(), 'eveatmo-test-')); } module.exports = { createScratchStoragePath };