Axetroy

Results 128 issues of Axetroy

I am building an app that doesn't allow the user to change the window size. should be an options like this: ```ts interface Options { minWidth?: number; maxWidth?: number; minHeight?:...

#1230 I had find some issues; but it didn't work for me; ### I had install all the karma dependencies ``` bash npm install grunt-karma karma karma-phantomjs-launcher karma-jasmine jasmine-core phantomjs-prebuilt...

Before: ```ts const bike: Record = { wheelSize: 16, topTubeLength: 24.5, manufacturer: 'Brompton' }; ``` After: ```ts const bike: Record = { wheelSize. : 16, topTubeLength: 24.5, manufacturer : 'Brompton'...

enhancement

```javascript const webpackConfig = { entry: "/path/to/virtual/file/module.js", plugins:[ new VirtualModulePlugin({ moduleName: "/path/to/virtual/file/module.js", contents: `// here is the javascript code` }) ] } ```

Golang's opponent should be Java, not `node.js` Can someone write a benchmark test of the Java framework for the most comparison? eg. `SpringBoot`/`Vert.x`/`Spring Webflux`

enhancement
good first issue

This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to fix one or more vulnerable packages in the `yarn` dependencies of...

Snyk has created this PR to fix one or more vulnerable packages in the `yarn` dependencies of this project. #### Changes included in this PR - Changes to the following...

Snyk has created this PR to fix one or more vulnerable packages in the `yarn` dependencies of this project. #### Changes included in this PR - Changes to the following...

https://github.com/bramblex/jsjs/blob/e705a21686c9a462c2fa7577642e8b568570d4b3/src/eval.ts#L194 ```javascript function test(){} function test(){} ``` 函数声明是可以重复的,应该使用``scope.$var``去声明 而``scope.$var``这里要改 https://github.com/bramblex/jsjs/blob/e705a21686c9a462c2fa7577642e8b568570d4b3/src/scope.ts#L103 ``var``是可以重复声明的,无论如何都应该返回true,新变量把旧变量覆盖掉

hm.... 在实现``async await``的时候遇到的 变量提升到底是不是个好东西 ```javascript const obj = { called: false }; func(); function func() { obj.called = true; } module.exports = obj; ``` 上面的代码是不能解释运行的.. 因为解析到``func()``的时候,还没有``func``这个变量