coderaiser

Results 103 issues of coderaiser

Would be great if `object` function do not mutate `obj` parameter: You can use [Object.assign](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) for this purpose in: ``` js DotObject.prototype.object = function (obj, mods) { var self =...

I think memory leak could be present in **devtools-terminal**. Today on linux server i found that is to less memory and I could do nothing. I start searching what process...

``` 1008 | ? Number(process.env.YARGS_MIN_NODE_VERSION) 1009 | : 12; 1010 | if (process1008 | ? Number(process.env.YARGS_MIN_NODE_VERSION) 1009 | : 12; 1010 | if (process && process.version) { 1011 | const...

To convert **Cloud Commander** to `ESM` same changes in API should be made: According to base usage example: ```js import http from 'http'; import cloudcmd from 'cloudcmd'; import {Server} from...

esm

Would be great to improve coverage of `Cloud Commander`. To get current coverage all you need is: ```sh git clone https://github.com/coderaiser/cloudcmd cd cloudcmd npm install npm run coverage ```

Hacktoberfest
help wanted

How package installed by `bpkg` could be uninstalled? Commands `uninstall` and `remove` do not works.

enhancement
help wanted

## Bug Report This related to #8617 - [x] I would like to work on a fix! **Current Behavior** `@babel/parser` has a different behavior when `estree` enabled, and when not....

pkg: traverse

### Describe the feature Would be great to have ability to parse some declarations in any context. > **allowImportExportEverywhere**: By default, import and export declarations can only appear at a...

enhancement

### ESLint version 8.4.0 ### What problem do you want to solve? Since `ESLint` supports async formatters started from [v8.4.0](https://eslint.org/blog/2021/12/eslint-v8.4.0-released#new-features-for-custom-formatters), would be great to have support of async plugins: ```js...

enhancement
core
accepted

Added example using [Set](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set): ```js const removeDuplicate = arr => Array.from(new Set(arr)); ```