Arthur

Results 7 issues of Arthur

我看文档有说,可以自动完成证书安装,这个证书自动安装是咋弄的呢

学习一个新知识,了解历史,了解来龙去脉,太重要了。完全以一个更高的维度去思考这些新的知识点

Is this a bug ? ```js fetch(url, conf) .then((res) => res.blob()) .then((blob) => { return blob.text().then((code) => { }) } ```

Why is the upstream sourcemap not processed in the loader? > https://github.com/TypeStrong/ts-loader/blob/main/src/index.ts#L34 ```js function loader(this: webpack.LoaderContext, contents: string, map?: Sourcemap) { if (map) { ... } } ```

I found a new api `PerformanceObserver`, it support `fetchEnd` event, maybe we can achieve it by a new method? ```js const observer = new PerformanceObserver((list, observer) => { console.log(list.getEntries()); });...

有空得重构这个项目,当初写这个的时候主要是写着玩的。 - 使用 ts 重构 - 钩子的调用需要更合理 - 更多的功能 - 更友好的文档和 demo

For example, the class generated by default is `abcd`, I want all classNames to be added with `#id` `.abcd` -> `#rootId .abcd`