(fileBlob, fileName, directory)
| 58 | } |
| 59 | |
| 60 | async function writeFile(fileBlob, fileName, directory) { |
| 61 | try { |
| 62 | await fileName.write(fileBlob); |
| 63 | } catch (error) { |
| 64 | alert(error); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | async function appendImgLink(noteName, imgShotLink) { |
| 69 | const imgLinkBuffer = encode(imgShotLink); |
no outgoing calls
no test coverage detected