(path: string, data: string)
| 798 | // File I/O |
| 799 | |
| 800 | export function writeFile(path: string, data: string): boolean { |
| 801 | return bloom_write_file(path as any, data as any) !== 0.0; |
| 802 | } |
| 803 | |
| 804 | export function fileExists(path: string): boolean { |
| 805 | return bloom_file_exists(path as any) !== 0.0; |
no test coverage detected