()
| 6 | import { getBotasaurusStorage } from 'botasaurus/botasaurus-storage' |
| 7 | |
| 8 | function getTotalMemory() { |
| 9 | let mem = getBotasaurusStorage().getItem("memory") |
| 10 | if (!mem) { |
| 11 | mem = totalmem() |
| 12 | getBotasaurusStorage().setItem("memory", mem); |
| 13 | } |
| 14 | return mem; |
| 15 | } |
| 16 | |
| 17 | const targetDirectory = getTargetDirectoryPath() |
| 18 |
no test coverage detected