waterbang
waterbang
注意:我没有在此项目运行测试,但是我是基于自己的项目进行测试。 本次的修改是针对YAML的递归处理。 原文 ```md --- layout: home hero: name: "xxx" text: "在你的本地设备上部署自己的 .dweb 域名" tagline: 我们协助鼓励开发者打造开放 Web应用,通过开放标准,应用之间可以实现互操作,这将开启一种全新的互联网体验,并为世界带来无尽的可能性。 image: src: /logo.svg alt: dweb --- ``` 翻译 ```md --- layout: home hero:...
The deno serve is elegant, but I found that the `Deno.serve` was not implemented after the migration. ```ts const server = dntShim.Deno.serve({ hostname, port }, (request) => { ^ TypeError:...
When recognizing wasm, return the original object. ### reason The below object caused a type error in `WebAssembly.instantiateStreaming`.
I hope to enhance the judgment of Uint8Array. Avoid the following problems. ```ts console.log('Is chunk Uint8Array?', chunk instanceof Uint8Array) // expect true console.log('Type of chunk:', Object.prototype.toString.call(chunk) === '[object Uint8Array]') //...