sz-p
sz-p
Thanks for your reply! Background information: I use `node-dependency-tree` in [vscode-framegraph](https://github.com/sz-p/vscode-framegraph), a vscode-extension to show dependency tree. About vue: [vue](https://vuejs.org/v2/guide/) is a `font-end` frame like `react` Simple Project : [demo](https://github.com/sz-p/vue-starter)...
I have fixed this problem. thank you for your explanation about `node-dependency-tree`, it helps me a lot. [vue-template-es2015-compiler](https://github.com/vuejs/vue-template-es2015-compiler) is a loader to get `vue string code` and parse it's `html...
遇到了同样的问题,跟踪一下
```javascript // 当字符串是由数字组成的时候 他们转换的数字一样的没有差别 let numStr = '123' console.log(parseInt(numStr)) //123 console.log(Number(numStr)) //123 // 当字符串是由字母组成的时候 let numStr = 'abc' console.log(parseInt(numStr)) //NaN console.log(Number(numStr)) //NaN // 当字符串是由数字和字母组成的时候 let numStr = '123a' console.log(parseInt(numStr)) //123...
这个题目出的不太好 我想当然的认为arguments是一个形参了 ```javascript function getArguments(){ //将参数转为一个数组 var args = Array.prototype.slice.apply(arguments); console.log(args) } getArguments(11,12); // [11,22] ``` 很明显的目的为,将函数内部可用的 `arguments` 对象 转化为一个真正意义上的数组
Could we add node comment by comment in file? see [@file](https://www.jsdoc.com.cn/tags-file)
emmm any news here?
I see the code load directoryIgnore in vscode.getConfiguration from [config.ts](https://github.com/aprilandjan/vscode-ascii-tree-generator/blob/master/src/config.ts) Could we load directoryIgnore from `.gitignore` default ?
暂时不可以 #19
Good idea! I will try this. But there are two problems 1. some projects may be too many dependencies, expand all dependencies at once may have performance problem. 2. I'm...