eslevels icon indicating copy to clipboard operation
eslevels copied to clipboard

ECMAScript scope levels analyzer based on escope library

Results 1 eslevels issues
Sort by recently updated
recently updated
newest added

```js function foo() { var y = 3; var w = function baz(){ var p = 2; }; } ``` In that code, the identifier `baz` should be in the...