sdxjs
sdxjs copied to clipboard
Software Design by Example with JavaScript
Good day. In backup.js there are 2 function in which you use keyword 'await' probably incorrectly. These are copyFiles and saveManifest. You don't use another related keyword 'await' so it...
Hi, on the section about how to handle errors with asynchronous code on the solutions presented is to be consistent and always return something. ```node async function returnImmediately () {...
Hi on the **asBinary** when saving the rows for each column ```node labels.forEach(label => { const temp = new Float64Array(table[label]) result.set(temp, current) current += temp.byteLength }) ``` We are storing...