JohnGurin
JohnGurin
Not sure whether the thread is suitable for further discussion. Still, is there a possibility to unobtrusively (without service restart) update `config.json`? The main concern is better to be able...
And even maybe to add a function `PushFromExcelRange`, which will work like `FromExcelRange` but will keep previous data
As a suggestion, it would be great if an arrow function does not require an additional parentheses when used like this: ```javascript const fn = () => (foo = bar(),...
```ini # .npmrc @:registry = https:/// ///:_auth = always-auth = true ``` **works**. ```yml # ~/.yarnrc.yml npmRegistries: ///: npmAuthToken: npmScopes: : npmRegistryServer: https:/// npmAlwaysAuth: true ``` **does not work** in...
I solved this by changing imports from `import * as express from 'express'` to `import express from 'express'`.